Package manager for ReactJs components.
Create, publish and include your ReactJs components easily.
How do I get set up?
Install the CreactJs package manager globally through NPM
$ npm install -g creactjs
Creating a new module
CreactJs comes with a handy init function that lets you get started on your component even quicker.
$ creactjs init myNewModule
The above command will create:
- new folder called myNewModule
- creact.json manifest file
- index.jsx file, the main view for your component.
####Init options
- -s,-store will add to your module a base store implementation
- -v,-view if the store option is set, this will create a view together with a store
- -git will add to the manifest file the correct repo for your module
Contacts