Skip to content

Commit

Permalink
2023.06.19
Browse files Browse the repository at this point in the history
  • Loading branch information
killerbossoriginal committed Jun 19, 2023
1 parent 902b8e9 commit 076185d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

This module allow you to make COUT and Debugs in NodeJS


## MJS or TypeScript
```js
import { cout } from '@thundernetworkrad/std';
import { cout } from 'node-cout';

cout = new cout(0, true, true); // debugLevel, logs enabled (file), emojis enabled

Expand All @@ -13,4 +13,10 @@ cout.log('test')
cout.error('test')
cout.warn('test')
cout.info('test')
```

## CJS
use `await import("")`
```js
let { cout } = await import('node-cout');
```

0 comments on commit 076185d

Please sign in to comment.