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

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.

Awesome Lists containing this project

README

        

# react-minimal

A starter React.js project with curated dependencies and tools.

![Build Status](https://github.com/briangershon/react-minimal/workflows/Continuous%20Integration/badge.svg)

- 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