Launch Control script for Node.js projects
?
S
BashLaunch control script to boot Node.js projects
1#!/bin/sh
2set -e
3
4npm install --quiet
5npm run build
6npm startCreated on 5/29/2018
Launch control script to boot Node.js projects
1#!/bin/sh
2set -e
3
4npm install --quiet
5npm run build
6npm startCreated on 5/29/2018