2
2

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.

npm install で躓いたこと

Last updated at Posted at 2018-09-11

※備忘録的に投稿しております。

下記を参考にServerless Framework をnpmでインストールしようとしたところ、タイムアウトで失敗。。。
Serverless Framework による AWS Lambda 関数の管理1

$ npm install -g serverless

「プロキシを正しく設定してくれ」と怒られた。
企業のWebプロキシではねられている模様。

調べてみたところ、下記コマンドでプロキシの設定をするとエラーが解消され、無事にインストールすることができた。
npmのconfigファイルで、httpとhttpsの設定が必要。

$ npm config set proxy http://proxy.company.com:8080
$ npm config set https-proxy http://proxy.company.com:8080

インストールが終わったら下記コマンドで確認。
serverless --version

参考
企業Webプロキシの背後にNode.jsとNpmを設定する方法

2
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?