1.0.2 • Published 5 years ago

@jtelesforoantonio/tiny-console v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Tiny Console

Example of a simple console with nodejs, you can run commands like: ls, ll, touch, mkdir, cat, cd, rm

Installation

npm i @jtelesforoantonio/tiny-console

Usage

Require TinyConsole.

const tinyConsole = require('@jtelesforoantonio/tiny-console');

Basic init.

tinyConsole.init();

You can set the path to init the console by passing the path as a parameter in the init method.

tinyConsole.init('./my_custom/path');