LoginSignup
3
3

More than 5 years have passed since last update.

npmを使ってbowerをインストールする

Last updated at Posted at 2017-06-04

node.jsをインストール

npmを確認

node.jsをインストールするとnpmが入っているはずなので以下のコマンドを実行する

# node.jsのバージョンを確認
node -v
# npmのバージョンを確認
npm -v

bowerをインストール

# npm 経由でbowerをインストール
npm install bower
# bowerのバージョンを確認
bower -v
# bowerでjqueryをインストールしてみる
bower install jquery

ライブラリののバージョン記載されているbower.jsonが設置される

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