motionrus / redux-form-boilerplate

An example with a simple Redux Form implementation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Redux Form Boilerplate

Demo

You can access the running code here

Requirements

For development, you will only need Node.js installed on your environement.

Node

Node is really easy to install & now include NPM.

Node installation on OS X

You will need to use a Terminal. On OS X, you can find the default terminal in /Applications/Utilities/Terminal.app.

Please install Homebrew if it's not already done with the following command.

$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

If everything when fine, you should run

brew install node

Node installation on Linux

sudo apt-get install nodejs
sudo apt-get install npm

Node installation on Windows

Just go on official Node.js website & grab the installer. Also, be sure to have git available in your PATH, npm might need it.


Install

$ git clone https://github.com/guigonc/redux-form-boilerplate
$ cd redux-form-boilerplate
$ npm install

Configure app

Start & watch

$ npm start

Update sources

Some packages usages might change so you should run npm prune & npm install often. A common way to update is by doing

$ git pull
$ npm prune
$ npm install

About

An example with a simple Redux Form implementation


Languages

Language:JavaScript 98.1%Language:HTML 1.9%