https://github.com/bdegreve/cryptoma
This tool was created for the purpose of enciphering parts of the route description of Joepie 27, tocht C.
https://github.com/bdegreve/cryptoma
cryptography reactjs
Last synced: about 1 month ago
JSON representation
This tool was created for the purpose of enciphering parts of the route description of Joepie 27, tocht C.
- Host: GitHub
- URL: https://github.com/bdegreve/cryptoma
- Owner: bdegreve
- License: isc
- Created: 2017-04-20T19:42:41.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T01:19:00.000Z (over 3 years ago)
- Last Synced: 2025-07-29T04:44:24.805Z (11 months ago)
- Topics: cryptography, reactjs
- Language: JavaScript
- Homepage: https://cryptoma.bramz.net/
- Size: 3.25 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cryptoma
[](https://cryptoma.bramz.net/)
[](https://opensource.org/licenses/ISC)
[](http://standardjs.com/)
This tool was created for the purpose of enciphering parts of the route description of [Joepie 27](http://www.joepie27.be/), tocht C.
## Website
A live version of Cryptoma can be accessed at [cryptoma.bramz.net](https://cryptoma.bramz.net/).
## License
ISC, see [LICENSE](./LICENSE) file.
## Requirements
- Node.js (v10.x LTS recommended) and NPM (v6.x recommended). Various download
options are available at [nodejs.org](https://nodejs.org/en/download/),
including instructions using [package managers](https://nodejs.org/en/download/package-manager/).
- Optional: [Yarn](https://yarnpkg.com/en/docs/install) to install the dependencies.
- Optional: `make`
## How to build
- Install dependencies:
```
npm install
```
Or, if you have Yarn:
```
yarn install
```
- Run development server at [localhost:8080](http://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
```
### Using `make`
- Run development server at [localhost:8080](http://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
```