文件名称:co-run:Thunkified shell 命令运行程序
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-26 15:40:33
JavaScript
共同经营 节点核心exec()包装为带有一些stdio选项的返回一个 thunk。 var co = require ( 'co' ) , run = require ( 'co-run' ) ; co ( function * ( ) { yield run ( 'echo "Hello World!"' , { stdout : function ( data ) { console . log ( 'stdout:' , data ) ; } } ) ; } ) ; 应用程序接口 [stdout, stderr] = yield run(cmd, options, execOptions) 指令 类型: String 要执行的 Shell 命令。 options.stdout 类型: Writable Stream或Function
【文件预览】:
co-run-master
----.travis.yml(91B)
----index.js(1KB)
----package.json(638B)
----test()
--------test.js(4KB)
--------fixtures()
----.gitignore(19B)
----README.md(2KB)
----.jshintrc(258B)