Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bluehalo/react-starter
Starter package for a React based single page application.
https://github.com/bluehalo/react-starter
Last synced: about 1 month ago
JSON representation
Starter package for a React based single page application.
- Host: GitHub
- URL: https://github.com/bluehalo/react-starter
- Owner: bluehalo
- License: mit
- Created: 2021-03-30T17:10:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-15T15:21:17.000Z (about 2 years ago)
- Last Synced: 2024-04-11T00:42:09.888Z (9 months ago)
- Language: JavaScript
- Size: 545 KB
- Stars: 3
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: docs/Contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# React Starter
This project is a foundation for building custom applications using React and Node.js.
## Requirements
You will need [Nodejs](https://nodejs.org/en/download/) installed. If you are working on multiple projects, it may be a good idea to install the latest version of Node using [nvm](https://github.com/nvm-sh/nvm).
## Getting Started
Follow the steps below to get the app running on your local machine:
1. Run `yarn install`.
2. Run `yarn dev`.
3. Open your browser to `http://localhost:3000`.## Scripts
| Name | Description |
| --------- | --------------------------------------- |
| dev | Run in development mode |
| test | Run Jest using defaults |
| start | Run in production mode |
| prettier | Format all JS code in the src directory |
| changelog | Generate changelogs since last tag |## Conventions
Read more on the following topics in our included docs:
- [State Management](./docs/StateManagement.md)
- [Contributing](docs/Contributing.md)
- [Releases](docs/Releases.md)