-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add alternatives to process execution libraries (#150)
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Process Execution | ||
|
||
Many process execution libraries have a subset of features that normally aren't used outside specific use cases. There are a few lighter alternatives for process execution libraries. | ||
|
||
# Alternatives | ||
|
||
## tinyexec | ||
|
||
`tinyexec` is a tiny and minimal process execution library. | ||
|
||
[Project Page](https://github.com/tinylibs/tinyexec) | ||
|
||
[npm](https://www.npmjs.com/package/tinyexec) | ||
|
||
## nanoexec | ||
|
||
`nanoexec` is a minimal wrapper around `child_process` that supports all options that `child_process.spawn` supports. | ||
|
||
[Project Page](https://github.com/fabiospampinato/nanoexec) | ||
|
||
[npm](https://www.npmjs.com/package/nanoexec) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters