Skip to content
This repository has been archived by the owner on Apr 17, 2021. It is now read-only.

CesiumLabs/prompt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Prompt Simple

Simple prompt for node.js

Installing

$ npm i prompt-simple

Example

const { prompt } = require("prompt-simple");

const name = prompt("What is your name?\n-> ");

console.log(`\n\nHello ${name}!`);