With this package, you can quickly and easily create your React-Redux application with just a few commands in the console. EOS-Redux makes Redux accessible to anyone, allowing you to generate middleware, reducers, or full Redux cycles with a single line of code. Forget copying and pasting every React container you write; generate a container from the command line and guarantee no typos. Enjoy!
We are a team that strives to make coding simple and efficient, and we are working to make the React-Redux paradigm easier to get up and running and more accessible for everyone!
Install EOS as a global npm package
npm install -g eos-redux
You're all set!
All commands are run through the following syntax:
eos <command> [args]
eos start [name]
Alternate syntax:
eos s [name]
Creates a Redux app with the name specified and a Node.js Express server.
To skip backend generation, use:
eos start [name] --backend none
The following file tree is generated for the frontend:
[name]/
+ frontend/
+ actions/
+ components/
app.jsx
root.jsx
router.jsx
+ middleware/
master_middleware.js
+ reducers/
root_reducer.js
+ store/
store.js
+ util/
index.jsx
.gitignore
index.html
package.json
webpack.config.js
Along with the creation of the file structure comes the installation of all dependencies needed. WARNING: NVM users will need to run the following commands to install dependencies:
cd [name]
npm install
All the first level dependencies included are:
If a backend was generated on start, the following additional dependencies are included:
For ease of use we have also included a default webpack.config.js file that is structured correctly for this framework.
eos generate [action] [name]
Alternate syntax:
eos g [action] [name]
Generates an individual element or a full cycle.
It is important how you format your name if it is more than one word. Currently it is required that you enter the name in one of the following formats:
sampleName
SampleName
This command will both generate pre-filled files and place the generated middleware or reducer into the master_middleware.js or root_reducer.js respectively.
eos generate cycle [name]
Generates a full redux cycle for a given name. The files that will be generated are as follows:
eos generate component [name]
Generates file structure for a single component:
components/
+ [name]/
[name]_container.js
[name].jsx
eos generate actions [name]
Generates actions file.
actions/
[name]_actions.js
eos generate middleware [name]
Generates middleware file.
middleware/
[name]_middleware.js
eos generate reducer [name]
Generates reducer file.
reducer/
[name]_reducer.js
eos generate api_util [name]
Generates api_util file.
util/
[name]_api_util.js
eos generate service [framework] [name]
Generates a server with its own associated environment. It is totally independent anything else in the project folder and can be deployed as its own app.
Example:
eos generate service express static_file_server
will create the following file structure:
[project root]/
static_file_server/
static_file_server.js
package.json
On eos start [project name]
(unless --backend none
is added) this command is run as
follows to setup a default server.
eos g service express server
Currently supported frameworks:
Remove follows the same syntax as generate and directly reverses any action that generate makes. It can be used on the full redux cycle or on any individual portion.
eos remove [type] [name]
Alternate syntax:
eos rm [type] [name]
Run Webpack from the root directory of a project with a default server.
eos webpack
Runs webpack
once in the frontend directory.
eos webpack watch
runs webpack --watch
in the frontend directory. Note the slight difference in syntax here.
To enable colorized output from webpack, just do cd frontend && webpack
from the root directory.
eos server
If a backend was generated on start, this command starts an Express server listening on port 8000.
To use a local copy of EOS Redux clone down the repo:
git clone https://github.com/amattson21/eos-redux.git
Setup the local environment:
cd eos-redux
npm install
To run commands with the local copy instead of $ eos <command> [args]
use:
[path to local copy]/eos-redux/eos-cli/eos-cli.js <command> [args]
Developed by Alex Mattson with the help of many great contributors