Launch Control script for Node.js projects

?
S
Bash

Launch control script to boot Node.js projects

1#!/bin/sh
2set -e
3
4npm install --quiet
5npm run build
6npm start

Created on 5/29/2018