https://github.com/stijnvanhulle/blockchain
Blockchain in nodejs
https://github.com/stijnvanhulle/blockchain
Last synced: 2 months ago
JSON representation
Blockchain in nodejs
- Host: GitHub
- URL: https://github.com/stijnvanhulle/blockchain
- Owner: stijnvanhulle
- Created: 2019-04-21T15:58:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-29T22:08:10.000Z (over 2 years ago)
- Last Synced: 2025-02-10T06:14:48.820Z (4 months ago)
- Language: JavaScript
- Size: 260 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Template
Use this template when starting a project with Node.
Included: Express, Mongoose, Docker, Jest## Installation
```bash
npm install
```## Running Dev Server
```bash
npm run start
```## Running docker-compose
```bash
npm run docker
```## Start mongo server from ./data folder
```bash
npm run mongo
```## Build for development
```bash
npm run build:dev
```## Build for production
```bash
npm run build:prod
```## Setting Environment
```bash
npm run set:dev
npm run set:prod
```## Start testing
```bash
npm run test
npm test
```## Watch testing
```bash
npm run test:watch
```## eslint
```bash
npm run eslint
```## prettier
```bash
npm run prettier
```## Clean dist folder
```bash
npm run clean
```