Bumps [crypto-js](https://github.com/brix/crypto-js) from 4.0.0 to 4.1.1. - [Release notes](https://github.com/brix/crypto-js/releases) - [Commits](https://github.com/brix/crypto-js/compare/4.0.0...4.1.1) --- updated-dependencies: - dependency-name: crypto-js dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Setup backend watchers
The backend is static. Typescript scripts are compiled into the dist
folder and served through a node web server.
You can avoid the manual shutdown/recompile/restart command line cycle by using a watcher.
Make sure you are in the backend
directory cd backend
.
- Install nodemon and ts-node
sudo npm install -g ts-node nodemon
- Run the watcher
Note: You can find your npm global binary folder using
npm -g bin
, where nodemon will be installed.
nodemon src/index.ts --ignore cache/ --ignore pools.json