An open API service indexing awesome lists of open source software.

https://github.com/noccer/react-starter-project

A simple React starter project with a single <App /> component class.
https://github.com/noccer/react-starter-project

babel nodejs npm react webpack

Last synced: 2 months ago
JSON representation

A simple React starter project with a single <App /> component class.

Awesome Lists containing this project

README

          

# Simple React Starter Project

> It does what it says on the tin.

## Instructions

Runs off node. So install that first.

Then install dependencies:

```
npm install
```

(Installs these dependencies)

- babel-core
- babel-loader
- babel-preset-react
- html-webpack-plugin
- webpack
- webpack-dev-server

Then build the project:

```
npm run build
```

Then run a server:

```
npm run start
```

Then go build some React stuffs.

## References

I got the instructions to build this setup from Codecademy. Definitely go through this and understand what's going on. It's very helpful.

-
-
-
-
-