https://github.com/paradoxinversion/creating-a-react-app-from-scratch
https://github.com/paradoxinversion/creating-a-react-app-from-scratch
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/paradoxinversion/creating-a-react-app-from-scratch
- Owner: paradoxinversion
- Created: 2018-09-23T17:39:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-13T22:37:19.000Z (over 3 years ago)
- Last Synced: 2024-04-14T22:58:30.517Z (about 2 years ago)
- Language: JavaScript
- Size: 814 KB
- Stars: 94
- Watchers: 7
- Forks: 45
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# creating-a-react-app-from-scratch
This is a simple react implementation, as seen in [this article](https://blog.usejournal.com/creating-a-react-app-from-scratch-f3c693b84658)
## Getting Started
_(Note: this project was created in Node v9.3.0)_
Clone this repo and install dependencies with `npm install`.
### Starting The Dev Server
To start the server and start hacking, run
```BASH
npm start
```
This starter uses webpack-dev-server to spin up an Express server with Hot-Reloading capability. Changes to code in `.src` should cause pages to reload.