https://github.com/sandy98/process-system
Adds a system function to process. Provides a simple way to execute shell commands from within a node-repl.
https://github.com/sandy98/process-system
Last synced: about 1 year ago
JSON representation
Adds a system function to process. Provides a simple way to execute shell commands from within a node-repl.
- Host: GitHub
- URL: https://github.com/sandy98/process-system
- Owner: sandy98
- License: mit
- Created: 2018-08-11T21:32:09.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-11T22:28:58.000Z (almost 8 years ago)
- Last Synced: 2025-02-07T12:39:51.308Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# process-system
Adds a system function to process. Provides a simple way to execute shell commands from within a node-repl.
## Install
`npm install process-system`
or, to make it available system-wide:
`sudo npm install -g process-system`
## Usage
```javascript
//Throw it in.
require('process-system')
//Use it with some shell command
process.system('ls -l')
```