1.0.0 • Published 1 year ago
@jtorm/json-repository v1.0.0
jTorm JSON Repository
Install
npm install @jtorm/json-repository
Usage
const
{ jsonRepositoryModel } = require('@jtorm/json-repository'),
path = 'your_dir',
file = 'example-file.json',
data = {
"test": 1
}
;
(async () => {
await jsonRepositoryModel.set(path, file, data);
const result = await jsonRepositoryModel.get(path, file);
})();
1.0.0
1 year ago