Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michalsnik/todomvc-meteor
todoMVC on meteor
https://github.com/michalsnik/todomvc-meteor
Last synced: 16 days ago
JSON representation
todoMVC on meteor
- Host: GitHub
- URL: https://github.com/michalsnik/todomvc-meteor
- Owner: michalsnik
- License: mit
- Created: 2016-06-30T00:12:54.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-27T13:59:56.000Z (almost 8 years ago)
- Last Synced: 2024-10-13T17:02:17.443Z (about 1 month ago)
- Language: JavaScript
- Size: 16.6 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Meteor • [TodoMVC](http://todomvc.com)
> Meteor is a full-stack JavaScript platform for developing modern web and mobile applications. Meteor includes a key set of technologies for building connected-client reactive applications, a build tool, and a curated set of packages from the Node.js and general JavaScript community.
## Resources
- [Website](http://meteor.com)
- [Documentation](http://docs.meteor.com/#/full/)
- [Guide](https://guide.meteor.com/)
- [Tutorials](https://www.meteor.com/tutorials)
- [Showcases](https://www.meteor.com/showcase)
- [Blog](http://info.meteor.com/blog)
- [FAQ](https://www.meteor.com/meteor-faq)### Books & Learning Resources
- [Discover Meteor](https://www.discovermeteor.com/)
- [Meteor Tips: Your first meteor application](http://meteortips.com/)
- [Meteor In Action](http://www.meteorinaction.com/)### 3rd Party Community Sites
- [Meteor Weekly](http://meteorweekly.com/)
- [Kadira Voice](https://voice.kadira.io/)
- [Meteor Chef](https://themeteorchef.com/)
- [Podcast: Meteor Transmission](https://transmission.simplecast.fm/)
- [Awesome Meteor](https://github.com/Urigo/awesome-meteor)### Support
- [Stack Overflow](http://stackoverflow.com/questions/tagged/meteor)
- [Twitter](http://twitter.com/meteor)
- [Gitter](https://gitter.im/meteor/meteor)
- [Slack](http://slack.themeteorchef.com/)*Let us [know](https://github.com/tastejs/todomvc/issues) if you discover anything worth sharing.*
## Implementation
This example follows most recent practices described by Meteor Team in official guide.
It uses few additional packages:
- `reactive-dict` together with `tracker` - For managing state in templates in reactive manner
- `kadira:flow-router` - Very simple router for Meteor. It does routing for client-side apps and does not handle rendering itself.
- `zimme:active-route` - This package provide helpers for figuring out if some route or path is or isn't the currently active route.
How was the app created? Anything worth sharing about the process of creating the app? Any spec violations?## Credit
Created by [Michał Sajnóg](http://github.com/michalsnik)