node-cout/readme.md
Killer Boss Original d3f7064ecb 2023.02.03
2023-02-03 19:21:19 +01:00

15 lines
No EOL
365 B
Markdown

# COUT
This module allow you to make COUT and Debugs in NodeJS
Readme work in progress
```js
import { createCout } from '@thundernetworkrad/std';
let ccout = new createCout(0, true); // debugLevel, logs enabled (file) (like using log() )
let cout = ccout.cout;
cout('test', 0) // console.log day, time and the string, if the number is >= to the debugLevel
```