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: adev/src/content/introduction/installation.md
+23-5Lines changed: 23 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,11 +32,29 @@ The following guide will walk you through setting up a local Angular project.
32
32
33
33
Open a terminal (if you're using [Visual Studio Code](https://code.visualstudio.com/), you can open an [integrated terminal](https://code.visualstudio.com/docs/editor/integrated-terminal)) and run the following command:
34
34
35
-
<docs-codelanguage="shell">
36
-
37
-
npm install -g @angular/cli
38
-
39
-
</docs-code>
35
+
<docs-code-multifile>
36
+
<docs-code
37
+
header="npm"
38
+
>
39
+
npm install -g @angular/cli
40
+
</docs-code>
41
+
<docs-code
42
+
header="pnpm"
43
+
>
44
+
pnpm install -g @angular/cli
45
+
</docs-code>
46
+
<docs-code
47
+
header="yarn"
48
+
>
49
+
yarn global add @angular/cli
50
+
</docs-code>
51
+
<docs-code
52
+
header="bun"
53
+
>
54
+
bun install -g @angular/cli
55
+
</docs-code>
56
+
57
+
</docs-code-multifile>
40
58
41
59
If you are having issues running this command in Windows or Unix, check out the [CLI docs](/tools/cli/setup-local#install-the-angular-cli) for more info.
0 commit comments