From 2a646f56d65a5256316dc6b1ca1a4f652df18069 Mon Sep 17 00:00:00 2001 From: Lorenzo Bloedow <108244120+LorenzoBloedow@users.noreply.github.com> Date: Fri, 5 Aug 2022 05:23:19 -0700 Subject: [PATCH] Add content for module bundlers * Add text and link. * Update module bundlers Co-authored-by: Kamran Ahmed --- .../110-build-tools/101-module-bundlers/readme.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/readme.md b/content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/readme.md index c0318608f..4872b33c8 100644 --- a/content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/readme.md +++ b/content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/readme.md @@ -1 +1,11 @@ -# Module bundlers \ No newline at end of file +# Module Bundlers + +A module bundler is a tool that takes pieces of JavaScript and their dependencies and bundles them into a single file, usually for use in the browser. You may have used tools such as Browserify, Webpack, Rollup or one of many others. + +It usually starts with an entry file, and from there it bundles up all of the code needed for that entry file. + +Free Content + +Module Bundlers Explained +Let’s learn how module bundlers work +