Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/stpettersens/startt
- Owner: stpettersens
- License: other
- Created: 2016-03-27T14:00:31.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-27T14:17:14.000Z (almost 9 years ago)
- Last Synced: 2024-04-25T11:01:54.289Z (8 months ago)
- Language: JavaScript
- Homepage: http://www.npmjs.com/package/startt
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE
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`