Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 809 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 809 Bytes

React starter project

A minimal project to get started with React:

  • webpack and webpack-dev-server
  • ES6 and JSX via Babel
  • hot module reloading via React Hot Loader

Installation:

git clone git@github.com:rauschma/react-starter-project.git
cd react-starter-project
npm install

Thanks to npm run, everything is installed locally!

Development:

  • Build once: npm run webpack
  • Run dev server: npm start

You can check out hot reloading by making changes to the JavaScript source code. You’ll see the results of those changes in the browser right away.

No support for testing, yet, I’m still in the process of figuring out what I want there.