https://github.com/briangershon/react-minimal
ReactJS starter using Snowpack tooling. Supports ES6 modules, hot reloading and unit testing. Plus Github CI workflow.
https://github.com/briangershon/react-minimal
javascript jest react reactjs snowpack snowpack-starter starter-template
Last synced: about 2 months ago
JSON representation
ReactJS starter using Snowpack tooling. Supports ES6 modules, hot reloading and unit testing. Plus Github CI workflow.
- Host: GitHub
- URL: https://github.com/briangershon/react-minimal
- Owner: briangershon
- License: mit
- Created: 2018-12-03T00:17:44.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2021-10-03T20:56:30.000Z (over 3 years ago)
- Last Synced: 2025-01-12T09:45:06.017Z (4 months ago)
- Topics: javascript, jest, react, reactjs, snowpack, snowpack-starter, starter-template
- Language: JavaScript
- Homepage:
- Size: 961 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-minimal
A starter React.js project with curated dependencies and tools.

- Development environment includes:
- Support for es6 modules and hot reloading (via Snowpack)
- Compile to es5 to run across a wide range of browsers
- Unit tests (via Jest)
- Continuous Integration workflow with Github Actions
- Prettier config- Styling with default fonts that look great across operating systems.
## Run Local Dev Server
npm install # install dependencies
npm start
# visit http://localhost:8080/## Run Tests
npm test
## Package project up in dist folder for release to server
npm run build