Async function demo for Ben Hallion.
- Rollup produces the best output (simplest necessary, no bloat).
- Rollup is fast!
- Rollup has treated me very well whereas I've had issues with other build tools.
git clone git@github.com:sholladay/rollup-async.git &&
cd rollup-async &&
npm install
To see the demo, simply do: npm run demo
. Rollup will compile modules with async
functions and they will be run in the browser via a test page, which will open in your default browser.
The point here is to show that Rollup does not care whether the code uses async
functions or not. And Rollup itself does not demand that you use Babel, though obviously browser support is a constraint.
See our contributing guidelines for more details.
- Fork it.
- Make a feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request.
Go make something, dang it.