# CIN
This module allow you to make CLI in NodeJS
##Examples
### Then
#### CommonJS
```js
const cin = require('cin').default;
cin('What is your favorite food?').then(ans => console.log(ans))
```