generator-ractive-webpack
v0.1.1
Published
Yeoman generator for RactiveJS and Webpack
Readme
Ractive Webpack Yeoman generator
RactiveJS application boilerplate with routing, internationalized text, date formatting, animations, pubsub, etc.
Develop with ES2015, Webpack, and hot reloading - all the good stuff from React development, without using React and JSX :-P
(You can also build on the Node.js development server to be full API or application server.)
Full list of a few of my favorite things:
- ES6 (via BabelJS)
- Ractive
- Webpack
- i18next
- lodash
- markdown-it
- Moment.js
- xhttp
- Ractive-route
- Animate.css
- Bootstrap
- Font-Awesome
Installation
Install yeoman and generator-ractive-webpack:
npm install -g yo
npm install -g generator-ractive-webpackSetting up new projects
Create a new directory, and cd into it:
mkdir my-app
cd my-appRun the generator
yo ractive-webpackand follow the prompts
Install & Run:
For development bundle and hot reloading:
npm install
npm startOpen: http://localhost:3000
For production bundle:
npm distThe minified public/bundle.js file can be deployed on a CDN, your host, or deployed with the node.js server at:
npm startOpen: http://localhost:3000
