Node
Very simple code Modern code Junior friendly Typescript Made with 💛
yarn add @onesy/node
import path from 'path';
import OnesyNode from '@onesy/node';
// A file add
await OnesyNode.file.add(path.resolve('a.json'), 'a');
// A file read
await OnesyNode.file.get(path.resolve('a.json'));
// A file remove
await OnesyNode.file.remove(path.resolve('a.json'));
Install
yarn
Test
yarn test
Build
yarn build