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
- Host: GitHub
- URL: https://github.com/stuymedova/bundler
- Owner: stuymedova
- Created: 2023-06-26T13:30:16.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-13T16:09:45.000Z (about 2 years ago)
- Last Synced: 2025-02-26T21:46:30.674Z (over 1 year ago)
- Topics: bundler, javascript-bundler, webpack-clone
- Language: JavaScript
- Homepage:
- Size: 43.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)