From 8c9a30aac980ee8ae8e46d422ab8a46c14d4dcaf Mon Sep 17 00:00:00 2001 From: Stefan Gagov Date: Wed, 31 Oct 2018 21:34:42 +0000 Subject: [PATCH] Update why-webpack.md --- src/content/concepts/why-webpack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/concepts/why-webpack.md b/src/content/concepts/why-webpack.md index 19866fae3779..656275fc245b 100644 --- a/src/content/concepts/why-webpack.md +++ b/src/content/concepts/why-webpack.md @@ -8,7 +8,7 @@ contributors: - EugeneHlushko --- -To understand why you should use webpack lets do a recap of how we use JavaScript on the web before bundlers were a thing. +To understand why you should use webpack let's do a recap of how we use JavaScript on the web before bundlers were a thing. There are two ways to run JavaScript in a browser. First, include a script for each functionality you want to implement, the issue is that the solution is hard to scale as loading too many scripts causes a network bottleneck. The other alternative is to load a big .js file containing all your project code, but this results in an unmaintainable scripts that causes problems in scope, size, readability, fragility and monolith files.