0
0

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 3 years have passed since last update.

npmとは何か勉強した記録

Last updated at Posted at 2020-06-15

##Macにインストールする

1.https://www.suzu6.net/posts/45/
を参考にまず
homebrewをインストール

2.https://brew.sh/index_ja
ターミナルに上記に書いてあるコマンドをコピペし、エンターキーでインストールを始める
これには数分かかる

3.node.jsを(ターミナルを使わないで)インストールする。
元サイトはこちら
https://nodejs.org/en/download/

4.ターミナルで、npmのバージョンを確認し、出たら成功している。
コマンドは
npm -v

##npmで何がやりたいのか

主にvue.jsなど。
他にも最近じゃあCSSフレームワークなんかもこれでインストールできる。

でもそれ使いたいなら大前提としてnpm使えないと意味が無いんで。

###vue.jsのインストール
https://jp.vuejs.org/v2/guide/installation.html#Vue-Devtools

###npmアンインストール
npm rm パッケージ名
npm r パッケージ名
npm remove パッケージ名
npm uninstall パッケージ名
npm unlink パッケージ名
npm un パッケージ名

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?