No description
Find a file
2023-07-08 16:22:24 +02:00
.github/workflows 2023.02.05-1 2023-02-05 13:32:26 +01:00
src exported as default 2023-07-08 16:22:24 +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 2023-07-08 16:15:00 +02:00
readme.md changelogs 2023-07-08 16:22:05 +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

v2023.07.08

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