https://github.com/stijnvanhulle/blockchain
Blockchain in nodejs
https://github.com/stijnvanhulle/blockchain
Last synced: 7 months ago
JSON representation
Blockchain in nodejs
- Host: GitHub
- URL: https://github.com/stijnvanhulle/blockchain
- Owner: stijnvanhulle
- Created: 2019-04-21T15:58:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-29T22:08:10.000Z (about 3 years ago)
- Last Synced: 2025-04-04T21:44:02.993Z (9 months ago)
- Language: JavaScript
- Size: 260 KB
- Stars: 1
- Watchers: 1
- 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
```