Readme Update

This commit is contained in:
Killer Boss Original 2023-02-03 18:43:26 +01:00
parent 5faa1f575a
commit 7e1623296e
2 changed files with 46 additions and 6 deletions

BIN
readme-images/example-1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -2,14 +2,54 @@
This module allow you to make CLI in NodeJS This module allow you to make CLI in NodeJS
##Examples ## Examples
### Then In this example is expected this Input/Output
#### CommonJS ![Image-1](./readme-images/example-1.png)
```js ### CommonJS
const cin = require('cin').default;
cin('What is your favorite food?').then(ans => console.log(ans)) ```cjs
const { cin } = require('cin');
cin('What is your favorite food?').then(ans => console.log(ans));
// or
async function hello() {
var ans = await cin('What is your favorite food?');
console.log(ans);
}
hello();
```
### ModuleJS
```mjs
import { cin } from 'cin';
cin('What is your favorite food?').then(ans => console.log(ans));
// or
async function hello() {
var ans = await cin('What is your favorite food?');
console.log(ans);
}
hello();
```
### TypeScript
```ts
import { cin } from 'cin';
cin('What is your favorite food?').then(ans => console.log(ans));
// or
async function hello() {
var ans = await cin('What is your favorite food?');
console.log(ans);
}
hello();
``` ```