Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meteor/todos
The example app "Todos", written following the Meteor Guide
https://github.com/meteor/todos
Last synced: 4 months ago
JSON representation
The example app "Todos", written following the Meteor Guide
- Host: GitHub
- URL: https://github.com/meteor/todos
- Owner: meteor
- License: other
- Archived: true
- Created: 2015-10-28T05:48:18.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-02-25T21:44:17.000Z (almost 4 years ago)
- Last Synced: 2024-09-25T13:04:46.416Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.25 MB
- Stars: 535
- Watchers: 51
- Forks: 366
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-starter - Meteor: Todos
- awesome-github-star - todos
README
## DEPRECATED
This repository is not used anymore as an example for Meteor projects.Look for Meteor examples [here](https://github.com/meteor/examples)
## OLD README
[![Circle CI](https://circleci.com/gh/meteor/todos.svg?style=svg)](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).
## 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
```