This tool was created for the purpose of enciphering parts of the route description of Joepie 27, tocht C.
A live version of Cryptoma can be accessed at cryptoma.bramz.net.
ISC, see LICENSE file.
- Node.js (v10.x LTS recommended) and NPM (v6.x recommended). Various download options are available at nodejs.org, including instructions using package managers.
- Optional: Yarn to install the dependencies.
- Optional:
make
- Install dependencies:
Or, if you have Yarn:
npm install
yarn install
- Run development server at localhost:8080:
npm start
- If you've chanced source code, update locale files (in
app/locales
):npm run translations
- Run tests
npm test
- Make production build (in
dist
):npm run dist
- Run development server at localhost:8080:
make run
- If you've chanced source code, update locale files (in
app/locales
):make translations
- Run tests
make check
- Make production build (in
dist
):make
- Clean up build
make clean
- Clean up everything (including dependencies)
make distclean