https://github.com/donejs/break-donejs
An example app used to find bad error messaging in donejs projects.
https://github.com/donejs/break-donejs
Last synced: 3 months ago
JSON representation
An example app used to find bad error messaging in donejs projects.
- Host: GitHub
- URL: https://github.com/donejs/break-donejs
- Owner: donejs
- License: mit
- Created: 2018-02-27T15:22:33.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-05T15:04:03.000Z (about 7 years ago)
- Last Synced: 2024-12-31T22:29:14.000Z (5 months ago)
- Language: JavaScript
- Size: 78.1 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# break-donejs
Welcome to the break-donejs DoneJS application!
## Getting started
To install all dependencies, (e.g. after cloning it from a Git repository) run
```
npm install donejs -g
npm install
```## Running tests
Tests can be run with
```
donejs test
```## Development mode
Development mode can be started with
```
donejs develop
```## Build and production mode
To build the application into a production bundle run
```
donejs build
```In Unix environment the production application can be started like this:
```
NODE_ENV=production npm start
```