tree: 84ffe217a33dca79b7e04bc4c2943d450390d661 [path history] [tgz]
  1. scripts/
  2. src/
  3. .eslintrc.json
  4. .gitignore
  5. package.json
  6. README.md
  7. tsconfig.json
server/README.md

Server

Setup

Install npm dependencies and generate a private/public key pair

npm install

Usage

Run with hot-reload for development

LD_LIBRARY_PATH="../daemon/src/.libs" npm start

Build for production

npm run build

Preview the production build

LD_LIBRARY_PATH="../daemon/src/.libs" npm run start:prod

Lint files

npm run lint

Lint and fix files:

npm run lint:fix

Format files

npm run format

Clean build output

npm run clean