Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/stpettersens/startt

:heavy_dollar_sign: Simple wrapper around starting a process in new window for Node.js.
https://github.com/stpettersens/startt

Last synced: about 1 month ago
JSON representation

:heavy_dollar_sign: Simple wrapper around starting a process in new window for Node.js.

Awesome Lists containing this project

README

        

## startt
> :heavy_dollar_sign: Simple wrapper around starting a process in new window for Node.js.

##### Install:

> `npm install startt`

##### Usage:

```js
'use strict';

const startt = require('startt');
startt('echo foo');
```

Uses `start %process%` command on win32 and `xterm -e %process%` on *nix.

Install xterm first if necessary. E.g. on Ubuntu:
> `sudo apt-get install xterm`