├── .gitignore ├── .gitattributes ├── .idea ├── .name ├── misc.xml ├── scopes │ └── scope_settings.xml ├── encodings.xml ├── vcs.xml ├── jsLibraryMappings.xml ├── modules.xml ├── generator-meteor-react.iml ├── libraries │ └── generator_meteor_react_node_modules.xml └── workspace.xml ├── templates ├── view │ ├── view.styl │ ├── view.html │ └── view.coffee ├── component │ ├── test.html │ └── test.txt └── collection │ ├── modal.txt │ └── publish.txt ├── .yo-rc.json ├── app ├── templates │ ├── client │ │ ├── views │ │ │ ├── 404 │ │ │ │ └── 404.html │ │ │ ├── home │ │ │ │ ├── home.styl │ │ │ │ ├── home.html │ │ │ │ └── home.coffee │ │ │ ├── about │ │ │ │ ├── about.styl │ │ │ │ ├── about.html │ │ │ │ └── about.coffee │ │ │ └── loading │ │ │ │ ├── loading.styl │ │ │ │ └── loading.html │ │ └── lib │ │ │ ├── meteor │ │ │ ├── startup.coffee │ │ │ ├── router.coffee │ │ │ └── security.coffee │ │ │ └── layout │ │ │ └── layoutFull.html │ ├── collections │ │ └── modals │ │ │ └── navigation.js │ ├── config │ │ └── settings.json │ ├── server │ │ ├── publish │ │ │ └── navigation.js │ │ └── lib │ │ │ └── startup.coffee │ ├── startup.sh │ ├── _main.html │ └── components │ │ └── topnav │ │ └── topnav.jsx └── index.js ├── .travis.yml ├── .editorconfig ├── .jshintrc ├── test └── test-app.js ├── package.json ├── component └── index.js ├── collection └── index.js ├── view └── index.js └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | generator-meteor-react -------------------------------------------------------------------------------- /templates/view/view.styl: -------------------------------------------------------------------------------- 1 | @import nib 2 | 3 | -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "generator-generator": {} 3 | } -------------------------------------------------------------------------------- /templates/component/test.html: -------------------------------------------------------------------------------- 1 |