Update README.md
This commit is contained in:
parent
8718af4659
commit
60e0fb0b67
1 changed files with 19 additions and 3 deletions
22
README.md
22
README.md
|
@ -1,4 +1,8 @@
|
|||
Work IN PROGRESS
|
||||
# STD
|
||||
|
||||
Standard module for NodeJS / TypeScript
|
||||
|
||||
Note: TypeScript support is in testing
|
||||
|
||||
```js
|
||||
const { cin } = require('@thundernetworkrad/std');
|
||||
|
@ -10,9 +14,21 @@ cin('Question').then((response) => {
|
|||
```js
|
||||
const { createCout } = require('@thundernetworkrad/std');
|
||||
|
||||
let ccout = new createCout(0, true); // debugLevel, logs enabled (file)
|
||||
let ccout = new createCout(0, true); // debugLevel, logs enabled (file) (like using log() )
|
||||
|
||||
let cout = ccout.cout;
|
||||
|
||||
cout('test', 0) // console.log day and time, if the number is >= to the debugLevel
|
||||
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 }
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue