shell-task

Proof-of-concept then-able shell commands in node.

MIT 5 个版本
安装
npm install shell-task
yarn add shell-task
pnpm add shell-task
bun add shell-task
README

shell-task

Proof-of-concept then-able shell commands in node. (Although it looks like a promise, it is NOT)

Install

$ npm install shell-task

Usage

var Task = require('shell-task')

new Task('git init')
    .then('sleep 1000')
    .then('git add .')
    .then(function (next) {
        // you can mix JavaScript functions in between...
        console.log('doing something...')
        setTimeout(next, 1000)
    })
    .then('git commit -m "testing this cool stuff"')
    .then('git remote add ...')
    .then('git push -u origin master')
    .run(function (err, next) {
        // this entire callback is optional.
        if (err) {
            // you can ignore the exception
            // and just call next(), which will
            // continue the flow
        } else {
            console.log('done!')
        }
    })
版本列表
1.0.0 2014-10-07
0.1.2 2014-02-12
0.1.1 2013-11-08
0.1.0 2013-11-08
0.0.1 2013-11-07