/React-Redux-Test

Primary LanguageJavaScriptMIT LicenseMIT

React Redux Test

Features

Requirements

  • node ^4.5.0
  • npm ^3.0.0

Getting Started

Install from source

First, clone the project:

$ git clone https://github.com/BrockBeldham/React-Redux-Test.git <my-project-name>
$ cd <my-project-name>

Then install dependencies and check to see it works.

$ npm install    # Install project dependencies
$ npm start      # Compile and launch (same as `npm start`)

If everything works, you should see the following:

While developing, you will probably rely mostly on npm start; however, there are additional scripts at your disposal:

npm run <script> Description
start Serves your app at localhost:3000. HMR will be enabled in development.
compile Compiles the application to disk (~/dist by default).
dev Same as npm start, but enables nodemon for the server as well.
test Runs unit tests with Karma and generates a coverage report.
test:dev Runs Karma and watches for changes to re-run tests; does not generate coverage reports.
deploy Runs linter, tests, and then, on success, compiles your application to disk.
deploy:dev Same as deploy but overrides NODE_ENV to "development".
deploy:prod Same as deploy but overrides NODE_ENV to "production".
lint Lint all .js files.
lint:fix Lint and fix all .js files. Read more on this.

THANKS

This project was built upon the React Redux Starter Kit