An open API service indexing awesome lists of open source software.

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.

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')

```