https://github.com/foxfirecodes/react-rollup-todos
Tiny React app that uses the JSONPlaceholder API to display some todo data.
https://github.com/foxfirecodes/react-rollup-todos
Last synced: about 2 months ago
JSON representation
Tiny React app that uses the JSONPlaceholder API to display some todo data.
- Host: GitHub
- URL: https://github.com/foxfirecodes/react-rollup-todos
- Owner: foxfirecodes
- Created: 2021-08-31T07:47:46.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-01-07T10:42:42.000Z (over 3 years ago)
- Last Synced: 2025-01-01T14:07:53.377Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 226 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-rollup-todos
> Tiny React app that uses the [JSONPlaceholder](https://jsonplaceholder.typicode.com/) API to display some todo data.
This is a small repo I used to experiment with the various configuration options and plugins available in Rollup, and comparing it to my past experience using Webpack. The app in this repo is transpiled using Babel, supports CSS modules, and is using livereload for development purposes.
## setup
```bash
# clone the repo
git clone git@github.com:rayzr522/react-rollup-todos.git
cd react-rollup-todos
# install dependencies
npm ci
# run the dev server
npm run dev
```