1.0.3 • Published 8 years ago

native-console v1.0.3

Weekly downloads
1
License
ISC
Repository
-
Last release
8 years ago

How to install

$ npm install native-console

How to use

//To import module
var c = require("native-console");

//To write
c.write("Hello World!");

//To read from keyboard
var input = c.read();

Example

var c = require("native-console");
c.write("Write something: ");
var text = c.read();
c.write("You wrote: "+text);