Skip to content

Frontend building is delegated to NPM and so leverages the NodeJS ecosystem.

In particular:

Available scripts

  • download dependencies and init developer environment

npm install

  • start development instance

npm start

  • start development instance with examples

npm run examples

  • run test suite once

npm test

  • run continuous test suite running

npm run continuoustest

  • run single build / bundling

npm run compile

  • run ESLint checks

npm run lint

  • run tests from Maven

npm run mvntest

  • build for travis

npm run travis