eos-redux v1.4.9
EOS Redux

Overview
Description
EOS is an npm package that allows you to have a full redux application up and running in only a few lines of code in the console!
Vision
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!
Table of contents
How to install
Install EOS as a global npm package
npm install -g eos-reduxYou're all set!
How to use
All commands are run through the following syntax:
eos <command> [args]Start
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 noneThe 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.jsAlong 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 installAll the first level dependencies included are:
- babel-loader
- babel-core
- babel-preset-es2015
- babel-preset-react
- lodash
- react-redux
- react
- react-dom
- react-router
- redux
- webpack
If a backend was generated on start, the following additional dependencies are included:
- body-parser
- cookie-parser
- debug
- express
- jade
- morgan
- serve-favicon
- ejs
For ease of use we have also included a default webpack.config.js file that is structured correctly for this framework.
Generate
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
SampleNameThis command will both generate pre-filled files and place the generated middleware or reducer into the master_middleware.js or root_reducer.js respectively.
Available Actions
cycle
eos generate cycle [name]Generates a full redux cycle for a given name. The files that will be generated are as follows:
- frontend/components/name/
- frontend/components/name/name.jsx
- frontend/components/name/name_container.jsx
- frontend/actions/name_actions.js
- frontend/middleware/name_middleware.js
- frontend/reducer/name_reducer.js
- frontend/util/name_api_util.js
component
eos generate component [name]Generates file structure for a single component:
components/
+ [name]/
[name]_container.js
[name].jsxactions
eos generate actions [name]Generates actions file.
actions/
[name]_actions.jsmiddleware
eos generate middleware [name]Generates middleware file.
middleware/
[name]_middleware.jsreducer
eos generate reducer [name]Generates reducer file.
reducer/
[name]_reducer.jsapi_util
eos generate api_util [name]Generates api_util file.
util/
[name]_api_util.jsService
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_serverwill create the following file structure:
[project root]/
static_file_server/
static_file_server.js
package.jsonOn eos start [project name] (unless --backend none is added) this command is run as
follows to setup a default server.
eos g service express serverCurrently supported frameworks:
- Express
- Flask
- Rails (in progress)
- Rack (coming soon)
Remove
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]Webpack
Run Webpack from the root directory of a project with a default server.
eos webpackRuns webpack once in the frontend directory.
eos webpack watchruns 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.
Server
eos serverIf a backend was generated on start, this command starts an Express server listening on port 8000.
Development
How to Set Up Development Environment
To use a local copy of EOS Redux clone down the repo:
git clone https://github.com/amattson21/eos-redux.gitSetup the local environment:
cd eos-redux
npm installTo 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
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago