https://github.com/daveschumaker/react-starter
A boilerplate React starter project for getting personal projects up and running with great haste.
https://github.com/daveschumaker/react-starter
barebones boilerplate javascript react reactjs starter-template
Last synced: 22 days ago
JSON representation
A boilerplate React starter project for getting personal projects up and running with great haste.
- Host: GitHub
- URL: https://github.com/daveschumaker/react-starter
- Owner: daveschumaker
- Created: 2020-02-08T16:52:04.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T14:37:06.000Z (over 3 years ago)
- Last Synced: 2024-05-01T12:49:35.411Z (almost 2 years ago)
- Topics: barebones, boilerplate, javascript, react, reactjs, starter-template
- Language: JavaScript
- Size: 1.39 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Yet Another React Starter Project
There are many React starter projects around the Internet, but this one is mine.
I use this project to quickly setup my own React projects without the overhead of something like [Create React App](https://reactjs.org/docs/create-a-new-react-app.html).
Plus, it's nice to know how to setup the development and production build processes using tools like Babel and Webpack.
## To run
1. Clone this project onto your machine: `git clone https://github.com/daveschumaker/react-starter.git`
2. `cd react-starter`
3. `npm install`
4. Use `npm run dev` to start dev server or `npm run build` to create a production build in the `/dist` directory (you will need to use something like `serve` or `http-server` to run the production build from `dist`)