Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sergeylukin/reactjs-webpack-babel-starterkit
All I need to start a ReactJS powered modern web app/game
https://github.com/sergeylukin/reactjs-webpack-babel-starterkit
Last synced: 27 days ago
JSON representation
All I need to start a ReactJS powered modern web app/game
- Host: GitHub
- URL: https://github.com/sergeylukin/reactjs-webpack-babel-starterkit
- Owner: sergeylukin
- Created: 2015-11-19T18:39:05.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-19T19:00:12.000Z (about 9 years ago)
- Last Synced: 2024-04-08T18:22:04.323Z (9 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ReactJS + Webpack + Babel starterkit
Starter kit used to build
[Netwalk game using ReactJS](https://github.com/sergeylukin/netwalk-reactjs)
for my course on ReactJS (to be released on https://code4startup.com)## Why?
Cause it's freaking awesome when code changes are applied on the fly while you
change the app state (oh yeah, you heard just right, no page reloads, JS/CSS/HTML
code changes are injected silently, pretty amazing stuff) and that's what you
can easily achieve with ReactJS + Webpack. And if we are already so bold, why
not writing in ES2015 instead of ES5? So we bundle `Babel` here too, a ES6 to
ES5 transpiler that is so pipes-friendly that it has a pipeable ReactJS JSX
syntax transform plugin which allows you to write code in the future today :)
Enjoy!## Getting started
- Clone this project
- Make sure you have NodeJS installed. More details on [NodeJS official
website](https://nodejs.org/en/)- Run `npm install` to install all the development tools and project dependencies
- Run `npm start` to get ball rolling and visit [http://localhost:8080](http://localhost:8080)
(or if you want to see better error reports and see the status panel
visit
[http://localhost:8080/webpack-dev-server/bundle](http://localhost:8080/webpack-dev-server/bundle)
instead)- Build you web app/game of dream :)