Template calculator web app for Pathfinder first edition.
The website is live at http://monster-workshop.herokuapp.com. As it is hosted on Heroku's free plan the server can go to sleep. In that case the first page can take 10-20 seconds to load.
The current version does all its calculations on the server therefore Javascript is not required in the browser. That is likely to change in future versions.
The npm documentation has instructions for installing Node.
On the command line, move to the project's main folder then run:
npm install
This will install all dependencies into folder node_modules
.
npm start
This runs the app on port 8080
or on the port specified by environment variable PORT
.
You can stop the server with Ctrl-C.
If running on the default port, type localhost:8080
in the browser address bar. As long as the server is running, the local version of the app should be displayed.
Changes are logged in CHANGELOG.md.