https://github.com/jlengstorf/learn-rollup
This is an example project to accompany a tutorial on using Rollup.
https://github.com/jlengstorf/learn-rollup
bundle es2015-modules javascript rollup tree-shaking tutorial video
Last synced: 2 months ago
JSON representation
This is an example project to accompany a tutorial on using Rollup.
- Host: GitHub
- URL: https://github.com/jlengstorf/learn-rollup
- Owner: jlengstorf
- License: isc
- Created: 2016-08-16T15:31:49.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-05-28T16:27:50.000Z (almost 5 years ago)
- Last Synced: 2025-03-09T01:46:50.114Z (2 months ago)
- Topics: bundle, es2015-modules, javascript, rollup, tree-shaking, tutorial, video
- Language: JavaScript
- Homepage: https://code.lengstorf.com/learn-rollup-js/
- Size: 26.4 KB
- Stars: 191
- Watchers: 4
- Forks: 60
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Learn Rollup.js
This is an example project to accompany a tutorial on using [Rollup](http://rollupjs.org/).
See the video of how this was made at https://code.lengstorf.com/learn-rollup-js/
## Quickstart
``` sh
# Clone the repo
git clone [email protected]:jlengstorf/learn-rollup.git# Move into the repo
cd learn-rollup/# Install dependencies
npm install# Start the watcher
npm run watch
```## Alternative Configurations
- [Default configuration (as built in the video)](https://github.com/jlengstorf/learn-rollup/)
- [Simple Node server for development using Express](https://github.com/jlengstorf/learn-rollup/tree/alt-config/express)
- [Extra configuration to support React](https://github.com/jlengstorf/learn-rollup/tree/alt-config/react)
- [Extra configuration with `rollup-plugin-livereload`](https://github.com/jlengstorf/learn-rollup/tree/alt-config/rollup-plugin-livereload)