node-input-t
v1.0.3
Published
```bash $ npm i node-input-t ```
Downloads
10
Readme
$ npm i node-input-t
Once the package is installed, you can import the library using import
or require
approach:
import { InputValue } from "node-input-t";
If you use require
for importing, only default export is available:
const { InputValue } = require("node-input-t");
const getinput = async () => {
const name = await InputValue("Enter your name");
console.log(name);
};
getinput();