https://github.com/hexsprite/todos
https://github.com/hexsprite/todos
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/hexsprite/todos
- Owner: hexsprite
- License: other
- Created: 2016-10-24T03:31:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-25T04:15:10.000Z (over 9 years ago)
- Last Synced: 2025-01-29T10:18:03.030Z (over 1 year ago)
- Language: JavaScript
- Size: 631 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](https://circleci.com/gh/meteor/todos)
This is a Todos example app built on the principles described in the [Meteor Guide](http://guide.meteor.com/structure.html). This app uses the module functionality introduced in Meteor 1.3, but everything else should be applicable to Meteor 1.2 as well.
## Versions
This version (the `master`) branch uses the [Blaze](http://guide.meteor.com/blaze.html) rendering library, with code written in ES2015 JavaScript.
The [`react`](https://github.com/meteor/todos/tree/react) branch implements the same application using [React](http://guide.meteor.com/react.html)
The [`coffeescript`](https://github.com/meteor/todos/tree/coffeescript) branch implements this (the Blaze) version of the app in CoffeeScript.
Note that attempts will be made to keep the branches up to date but this isn't guaranteed.
### Running the app
```bash
meteor npm install
meteor
```
### Scripts
To lint:
```bash
meteor npm run lint
```