generator-framework
v0.0.4
Published
Soon to be a simple starting environment for creating front-end frameworks with the power of webpack.
Downloads
2
Maintainers
Readme
framework
A simple environment setup for rapid protoyping of your UI framework using webpack.
This generator is still a work in progress.
Installation
Install yeoman, framework, and webpack
$ npm install -g yo generator-framework webpack
Run
$ yo framework
Follow the instructions for setup!
Usage
Generate new components by:
$ yo framework:component "name"
Each component you make will be encapsulated in it's own folder
located in src/components/
which contains a html
, css
, and js
file.
Start the webpack server:
$ webpack-dev-server
Go to http://localhost:8080/webpack-dev-server/bundle
and begin creating your framework's components!
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request
TODO
- Add sass support
- Interface webpack with gulp
- Many other features...