Skip to content

Commit 5e86e4e

Browse files
tamirSwagskipjack
authored andcommitted
docs(concepts): direct new-comers to read about modules (#1773)
This is because new-comers may have an easier time to understand webpack and why it is needed when they read about JS modules.
1 parent 0ba7d85 commit 5e86e4e

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/content/concepts/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ contributors:
1212

1313
At its core, *webpack* is a _static module bundler_ for modern JavaScript applications. When webpack processes your application, it recursively builds a _dependency graph_ that includes every module your application needs, then packages all of those modules into one or more _bundles_.
1414

15+
T> Learn more about JavaScript modules and webpack modules [here](/concepts/modules).
16+
1517
It is [incredibly configurable](/configuration), but to get started you only need to understand four **Core Concepts**:
1618

1719
- Entry

src/content/concepts/modules.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ contributors:
55
- TheLarkInn
66
- simon04
77
- rouzbeh84
8+
related:
9+
- title: JavaScript Module Systems Showdown
10+
url: https://auth0.com/blog/javascript-module-systems-showdown/
811
---
912

1013
In [modular programming](https://en.wikipedia.org/wiki/Modular_programming), developers break programs up into discrete chunks of functionality called a _module_.

0 commit comments

Comments
 (0)