Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.11 KB

README.md

File metadata and controls

52 lines (36 loc) · 1.11 KB

React Application Template

This is a simple template for a React application.

This template uses:

Installation

To create a fresh copy of this project, clone the repository, then remove it's git history:

  1. Clone this repo into a folder on your machine.
  2. cd into that folder cd my-project-name
  3. Delete the git history: rm -rf .git
  4. Create a new git history: git init
  5. Install the necessary dependencies - run npm install in the folder where the package.json is located.

Scripts

The following can all be found under the "scripts" section in your package.json. You can add more scripts here if you like, and run them with npm run my-script.

Running in Development Mode

npm run dev

Running Tests

npm run test

Linting

npm run lint

Building for Production

npm run build