File system storage utility with localStorage like API
npm install nodestorage.js> File system storage utility with localStorage like API

``sh`
$ npm i nodestorage.js
`js
const nodeStorage = require('nodestorage.js');
const storage = new nodeStorage({ dir: 'storage' });
console.log(storage);
/*
=> {
_path: {storagePath},
length: 0,
}
*/
storage.setItem('name', 'nodestorage.js');
// set value of name to nodeStorage.js
`
Set the value of key to value
Returns the value of key
Remove key and its value from storage
Returns key` at the index in storage
Clears storage
Returns a count of data in storage
Return storage path
MIT @ Uche Jude