@sane/command
v1.0.0
Published
Promisified api for shell commands and simple daemons
Downloads
16
Readme
@sane/command
Promisified api for shell commands and simple daemons.
Install
npm install @sane/command --save
Example
import { cmd, Daemon } from '@sane/service';
async function main() {
let repoUrl = 'https://github.com/bls/node-sane-command.git'
await cmd(['git', 'clone', repoUrl]);
let gitd = new Daemon(['git', 'daemon', '/tmp']);
await gitd.start();
//
// Code requiring local git daemon goes here...
//
await gitd.stop();
}
main()
Compatibility
- Requires Node >= v4.0.0
Release
- Bump up the version number in package.json
- Add a section for the new release in CHANGELOG.md
- Run prepublish and test npm scripts
- Commit
- Create a git tag for the new release and push it
- Run npm publish