Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wwsun/starter-node-react
A starter project for React.js app
https://github.com/wwsun/starter-node-react
nodejs react
Last synced: 4 months ago
JSON representation
A starter project for React.js app
- Host: GitHub
- URL: https://github.com/wwsun/starter-node-react
- Owner: wwsun
- License: mit
- Archived: true
- Created: 2015-10-09T08:28:51.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-02T07:56:01.000Z (almost 9 years ago)
- Last Synced: 2024-06-26T02:31:42.525Z (5 months ago)
- Topics: nodejs, react
- Language: JavaScript
- Homepage:
- Size: 244 KB
- Stars: 164
- Watchers: 9
- Forks: 33
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# starter-node-react
A starter project for react-app, if you don't familiar with React with Webpack,
the following links is highly recommended.- [Roadmap for learning React](https://github.com/wwsun/awesome-javascript/tree/master/sections/React)
- [React and Webpack Cookbook - chn version](https://fakefish.github.io/react-webpack-cookbook/index.html)## Dependencies
please use the latest version of following tools:
1. ECMAScript 6
1. React [0.14](http://facebook.github.io/react/blog/2015/10/07/react-v0.14.html)
1. React-router [1.0](https://github.com/rackt/react-router)
1. Webpack 1.12
1. Babel [6.0](https://babeljs.io/blog/2015/10/29/6.0.0/)
1. Koa 1.0
1. Node.js 4.1## Documentation
### Server-side codes with ES6
- `babel-node` is selected in the server-side,
which is an executable for running code via Babel that otherwise works like the `node` executable.- `babel-preset-es2015-node5` is selected, so that Babel can transpile ES6.
The preset configures Babel so that only ES6 constructs are transpiled that missing from Node.js 5。### Client side codes with ES6 (React with ES6)
Tools:
- **webpack** as a client-side module build and module loader
- **npm** as the package manager
- **Babel** as a transpiler from ES6 to ES5Dependencies:
- `babel-loader` enables webpack to transpile JavaScript via Babel.
- `babel-preset-es2015` is a Babel preset for compiling ES6 to plain ES6.
- `webpack-dev-server` adds a hot-reloading development web server to webpack.## Running
### Install dependencies
npm install
### BuildIf your app is ready, and you want to check the results, you can execute
npm run build
then the `bundle.js` is serving at `http://localhost:300/bundle.js` via your koa server,
or you can use hot mode if you want to `build` repeatedly to check the code changes:npm run dev
then the `bundle.js` is serving at `http://localhost:8080/assets/bundle.js` via `webpack-dev-server`**remember!!! you should modify the path of file `bundle.js` in `home.html` manually!**
### Start
npm start
### BrowseOpen your browser, and visit `http://localhost:3000` to check the result
## Reference documentations
1. [Babel 6.0 released](https://babeljs.io/blog/2015/10/29/6.0.0/)
1. [Setting up Babel 6](http://babeljs.io/blog/2015/10/31/setting-up-babel-6/)
1. [Babel-loader documentation](https://github.com/babel/babel-loader)
1. [webpack dev server](http://webpack.github.io/docs/webpack-dev-server.html)
1. [React-router 1.0 doc](https://github.com/rackt/react-router)