🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@appjumpstart/launch

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appjumpstart/launch

A simple process manager used to run a Node.js application in the background

3.0.0
latest
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

launch

A simple process manager used to run a Node.js application in the background

Npm page Build status appjumpstart chat

About

launch is useful when you want to run a long-running Node.js process in detached mode (background), want the output from the process directed to a log file, and want to be able to easily kill the process at a later stage. A common use case would be running a Node.js server, running a test suite against the running server, and then killing the server when the test suite has finished.

Installation

yarn add @appjumpstart/launch --dev

Usage

launch <file|command?>

Launch the default command (main or scripts.start in package.json):

❯ npx launch
🚀 Launched server on process 40765!

Kill the process:

❯ npx launch --kill
💥 Killed server on process 40765!

Acknowledgement

All dependencies created by the amazing Sindre Sorhus.

License

Apache 2.0 with Commons Clause - See LICENSE

 

AppJumpstart

Keywords

process

FAQs

Package last updated on 20 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts