No description
Find a file
Killer Boss Original 02c0348f12
Update readme.md
2023-07-08 17:20:39 +02:00
.github/workflows 2023.02.05-1 2023-02-05 13:32:26 +01:00
src Update index.ts 2023-07-08 17:19:40 +02:00
.gitignore Edit gitignore 2023-06-19 17:47:11 +02:00
.npmrc Initial commit 2023-02-03 18:47:53 +01:00
LICENSE Initial commit 2023-02-03 18:47:53 +01:00
package.json 2023.07.08-2 2023-07-08 17:20:06 +02:00
readme.md Update readme.md 2023-07-08 17:20:39 +02:00
tsconfig.json 2023.06.19 2023-06-19 18:59:21 +02:00

COUT

This module allow you to make COUT and Debugs in NodeJS

MJS or TypeScript

import cc from 'node-cout';

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

cout.debug('test', 0) // console.log time and the string, if the number is >= to the debugLevel
cout.log('test')
cout.error('test')
cout.warn('test')
cout.info('test')

CJS

use await import("")

const { default } = await import('node-cout'); // ti put in an async function
const cout = new default(); // from here equal to MJS example

Changelogs

2023.07.08-2

  • Fix emoji for Debug

2023.07.08-1

  • Fix info Emoji

v2023.07.08

  • Exported the main class as default
  • Add Stringify to all functions
  • Changed the string type in the function to "any"