https://github.com/donejs/chat-guide
Contains the guide for the chat application
https://github.com/donejs/chat-guide
Last synced: 3 months ago
JSON representation
Contains the guide for the chat application
- Host: GitHub
- URL: https://github.com/donejs/chat-guide
- Owner: donejs
- License: mit
- Created: 2015-11-06T14:18:08.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-06-20T16:35:53.000Z (almost 6 years ago)
- Last Synced: 2024-12-31T22:29:14.016Z (5 months ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# donejs-chat-guide
This repo contains the source files for the [DoneJS](http://donejs.com) [chat guide](http://donejs.com/Guide.html).
## Testing
To test that the guide works you can run:
```js
npm install
```And then:
```js
npm test
```## Modifying steps
Steps are stored in the `steps/` folder, and are named to match the step in the guide. The file names should be obvious, and most steps contain at least one test file.
## Debugging Tests
Running
```
node_modules/.bin/guide --help
```Shows a list of options, these are nice when developing:
### local
By default a temporary folder is created to run the guide, but when debugging you pprobably want it to be installed to the local folder in PROJECT/donejs-chat Use this flag for that
### browser
Specify which browser to launch with.
### skip-to
Skips to a specific set. This only sort-of works because one of the steps is to start the `donejs develop` server and if you skip that step the subsequent steps that depend on live-reload will not work. But you can skip ahead past the dev parts and go into production builds.
### root
If you are skipping past the `donejs develop` step you probably want to set the root, `--root donejs-chat` so that all commands are executed from there.