Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

fs/react-base

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
app
 
 
bin
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Skeleton for React based application

Build Status Dependency Status devDependency Status

Kick-start your new web application based on React and Redux technologies. It also includes Webpack 3, Yarn, React hot loader, PostCSS, JSON-server tools and test environment based on Jest, Enzyme, Eslint and Stylelint for even more rapid development.

Try the demo http://react-base.herokuapp.com

Dependencies:

List of all dependencies is presented here

Install

OSX

Install Node.js

brew install nvm yarn
nvm install node
nvm alias default node

Quick start

Clone application as new project with original repository named "react-base"

git clone git@github.com:fs/react-base.git --origin react-base [MY-NEW-PROJECT]

Create your new repo on GitHub and push master into it. Make sure master branch is tracking origin repo.

git remote add origin git@github.com:[MY-GITHUB-ACCOUNT]/[MY-NEW-PROJECT].git
git push -u origin master

Run bootstrap script

bin/setup

Run application

Run app (by default environment is 'development', port is 8000)

yarn start

Run app with options

[<options>] yarn start
NODE_ENV=development # build app with development environment
NODE_ENV=production # build app with production environment
NODE_ENV=test # build app with test environment
PORT=8000 # run server on 8000 port

Start to use application in browser:

localhost:8000

Run tests and linters

yarn test

Code linting tasks

Run javascript linter

yarn eslint

Run stylesheets linter

yarn stylelint

Run all linters

yarn lint

Test tasks

Run jest tests

yarn jest

Credits

React base is maintained by Marat Fakhreev. It was written by Flatstack with the help of our contributors.