Getting started#
Requirements#
Node.js via prebuilt installers / nvm / nvm-windows.
Setup#
Install the project’s dependencies:
npm install
You may want to specify --include=dev
if you are running in an environment where the environment
variable NODE_ENV=production
is set.
Running in development#
You can build and serve the viewer in debug mode using:
npm start
The viewer should then be available at http://localhost:3010.
Building a distribution#
To create a build, run:
npm run build
The build should then be available in the dist
directory.