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

https://github.com/stuymedova/bundler

A small module bundler for the Node.js environment
https://github.com/stuymedova/bundler

bundler javascript-bundler webpack-clone

Last synced: 10 months ago
JSON representation

A small module bundler for the Node.js environment

Awesome Lists containing this project

README

          

# Bundler

A small module bundler for the Node.js environment.

For the background information on bundlers see [BACKGROUND.md](./BACKGROUND.md).

## Demo

The bundle resulted from building the index file from the [example directory](./example/) is located at [./bundle.js](./bundle.js).

Try building the project yourself by running `node example.js` from the root of the project.

## References

- [Ronen Amiel — Build Your Own Webpack](https://www.youtube.com/watch?v=Gc9-7PBqOC8), code at [minipack](https://github.com/ronami/minipack/blob/master/src/minipack.js)
- [Adam Kelly — Let’s learn how module bundlers work and then write one ourselves](https://www.freecodecamp.org/news/lets-learn-how-module-bundlers-work-and-then-write-one-ourselves-b2e3fe6c88ae/), code at [wbpck](https://github.com/adamisntdead/wbpck-bundler/blob/master/index.js)
- [Tan Li Hau — What is module bundler and how does it work?](https://lihautan.com/what-is-module-bundler-and-how-does-it-work/)
- Tan Li Hau — I wrote my module bundler [[Part I](https://lihautan.com/i-wrote-my-module-bundler/)][[Part II](https://lihautan.com/i-wrote-my-module-bundler-ii-for-the-web/)], code at [byo-bundler](https://github.com/tanhauhau/byo-bundler/blob/master/src/index.js)
- [Jane Street — Build Systems with Andrey Mokhov](https://www.youtube.com/watch?v=V9YA32uV3Ls)