std/README.md
Killer Boss Original 60e0fb0b67
Update README.md
2023-01-28 19:16:48 +01:00

34 lines
777 B
Markdown

# STD
Standard module for NodeJS / TypeScript
Note: TypeScript support is in testing
```js
const { cin } = require('@thundernetworkrad/std');
cin('Question').then((response) => {
console.log(response)
})
```
```js
const { createCout } = require('@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
```
```js
const { log } = require('@thundernetworkrad/std');
log('test') // create a file at the first log, add the string to the log
```
```js
const { getTime } = require('@thundernetworkrad/std');
let time = getTime() // return { year, month, day, hours, minutes, seconds }
```