1.1.0 • Published 6 years ago

file-system-practice v1.1.0

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

File System Demo.

Read JSON file and extract objects based upon any specific key and write data to new file.

#install

npm i file-system-practice

Usage.

var fileSystem = require('file-system-practice'); var file = "./inputFile.json"; var findValue = "PB";

fileSystem(file, findValue);

It will search in inputFile with state PB and create a new file having name PB_DATA.json.