React + Redux with Webpack
git clone https://github.com/xeejp/experiment-boilerplate.git ./your-applicationnpm installnpm run build:watch- Start editing!
-
script.exs
The experiment script for your application.
You must follow the Xee's experiment script API. -
(host|participant)/index.js
The entry point for clients.
You may have to edit this file unless you don't change the structure of your application. -
(host|participant)/App.js(x?)
The root React component which will be rendered by default. -
(host|participant)/actions.js
The space to define Redux actions.
See Actions | Redux for detail. -
(host|participant)/reducer.js
The reducer for your application's Redux store.
See Reducers | Redux for detail. -
(host|participant)/saga.js
The saga to handle side effects of Redux actions.
See Read Me | redux-saga for detail.
npm run build:devBuild your application for developmentnpm run build:watchWatch and build your application for developmentnpm run build:prodBuild your application for production