You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/get-started/index.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@ sort: 3
4
4
contributors:
5
5
- bebraw
6
6
- varunjayaraman
7
+
- cntanglijun
7
8
---
8
9
9
10
webpack is a tool to build JavaScript modules in your application. To start using `webpack` from its [cli](/api/cli) or [api](/api/node), follow the [Installation instructions](/get-started/install-webpack).
@@ -17,7 +18,8 @@ Create a demo directory to try out webpack. [Install webpack](/get-started/insta
17
18
mkdir webpack-demo &&cd webpack-demo
18
19
npm init -y
19
20
npm install --save-dev webpack
20
-
webpack --help # Shows a list of valid cli commands
21
+
./node_modules/.bin/webpack --help # Shows a list of valid cli commands
22
+
.\node_modules\.bin\webpack --help # For windows users
0 commit comments