2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Angular CLIのnewコマンドが重い時は

2
Posted at

Angularアプリの新規作成する際、Angular CLIのnewコマンドを使いますが、

$ ng new SampleApp

npmによるパッケージインストールがいつまで経っても終わりません。(10分以上待っても)
しかも、ブラウジングも重くなってしまいます。

$ node --version
v8.10.0
$ npm --version
5.6.0

macOS Sierraです。

対策

さすがに困るので、生成時にパッケージインストールをスキップするようにしてます。

$ ng new SampleApp --skip-install

そして、yarnでパッケージインストールします。

$ yarn

yarnなら

Done in 85.92s.

でした。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?