Append-only CLI that append item to JSON.
npm install json-append -g
$ printf 1 | json-append output.json && printf 2 | json-append output.json
output.json
[
"1",
"2"
]
npm test
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
MIT