59 lines
1.9 KiB
Markdown
59 lines
1.9 KiB
Markdown
TODO
|
|
====
|
|
|
|
* Get Polymer installed using bower.
|
|
* Install Vulcanize package listed below
|
|
* Copy the differential polymer demo to get polymer implemented nicely
|
|
* Update Meteor
|
|
* Install and use LESS
|
|
|
|
Packages used
|
|
=============
|
|
|
|
* meteor-platform
|
|
* Base Meteor.
|
|
* [Docs](http://docs.meteor.com/#/full/)
|
|
* autopublish
|
|
* Publishes everything to the client.
|
|
* Must be removed before release
|
|
* insecure
|
|
* Allows the client the freedom to modify any colleciton.
|
|
* Must be removed before release
|
|
* iron:router
|
|
* Enables pagination and URL's to direct to specific templates.
|
|
* [Tutorial](http://www.manuel-schoebel.com/blog/iron-router-tutorial)
|
|
* accounts-password
|
|
* Lets users create accounts with a simple password
|
|
* accounts-ui
|
|
* Adds simple UI for logging in
|
|
* random
|
|
* Somewhat decent cryptographically strong psuedo random number generation.
|
|
* [readme](https://atmospherejs.com/meteor/random)
|
|
* dburles:collection-helpers
|
|
* Adds template-style helpers to collections. [github page](https://github.com/dburles/meteor-collection-helpers)
|
|
* reactive-var
|
|
* Friendly reactive variables
|
|
* [Meteor Docs](http://docs.meteor.com/#/full/reactivevar_pkg)
|
|
* cw4gn3r:jquery-event-drag
|
|
* Adds jquery drag events
|
|
* underscore
|
|
* Handy javascript utilities
|
|
* [Docs](http://underscorejs.org/)
|
|
* aldeed:collection2
|
|
* Extends collections with Schemas
|
|
* [(gitHub page)](https://github.com/aldeed/meteor-collection2)
|
|
* uses [SimpleSchema](https://github.com/aldeed/meteor-simple-schema)
|
|
* aldeed:autoform
|
|
* Automatically generates bootstrap forms for collection2 Schemas.
|
|
* [github](https://github.com/aldeed/meteor-autoform)
|
|
* differential:vulcanize
|
|
* Bakes all the polymer imports into one file
|
|
* [github](https://github.com/Differential/meteor-vulcanize)
|
|
|
|
************
|
|
|
|
Resources
|
|
=========
|
|
|
|
[differential's polymer demo](https://github.com/Differential/polymer-demo)
|