snorun
v1.4.0
Published
Run & interact with shell command like in node without pain.
Downloads
426
Maintainers
Readme
snorun
Run & interact with shell command like in node without pain.
Feat
- Returns true if command exited with code 0 and otherwise false.
- pipe stdin and stdout and stderr with your main process
Usage
If you like to do this in shell,
echo command && echo succ || echo fail
then you can convert them into javascript
import snorun from "snorun";
const result =
((await snorun("echo command")) && (await snorun("echo succ"))) || (await snorun("echo fail"));
// result = true
// and your console will show like this
// > command
// > succ
About
License
GPLv3 - The GNU General Public License v3.0 - GNU Project - Free Software Foundation
Author
Author: snomiao [email protected] Website: snomiao.com
Sponsors
- None yet.
Claim your sponsorship by donating snomiao <Email: [email protected]>
Contribute
The main repo is in here, any issue and PR's welcome.