1.1.17 • Published 2 years ago

snorun v1.1.17

Weekly downloads
-
License
GPLv3
Repository
github
Last release
2 years ago

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 snomiao@gmail.com Website: snomiao.com

Sponsors

  • None yet.

Claim your sponsorship by donating snomiao <Email: snomiao@gmail.com>

Contribute

The main repo is in here, any issue and PR's welcome.

1.1.17

2 years ago

1.1.15

2 years ago

1.1.13

2 years ago

1.1.12

2 years ago

1.1.9

2 years ago

1.1.6

2 years ago

1.1.2

2 years ago

1.0.3

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago