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?

【Node.js】コマンド チートシート【Git】

Posted at

太字部分はその時々で書き換えて実行すること
[ ]内はオプションのため記述は必須ではない

Node.js(npm)コマンド

コマンド 意味
npm install package.jsonを使った一括インストール
npm install --save module名 ローカルインストール
module名をpackage.jsonの依存情報に追加
npm -g install module名 グローバルインストール
npm cache clear キャッシュクリア
npm ls インストール済モジュール一覧を表示
npm run スクリプト名 JavaScriptプログラムの実行

Angular(ng)コマンド

コマンド 意味
ng serve 開発ビルドと実行
(ビルド結果はメモリ上にのみ展開)
ng build ビルド結果をファイルに出力
(distフォルダへ)
ng build -prod --aot 公開用にサイズを縮小してビルド
ng lint コード規約遵守の検証
(tslint.jsonファイルでルール設定)

Gitコマンド

コマンド 意味
git clone GitのURL リモートからローカルにクローンを作る
git branch [-a] アクティブなブランチを確認する
git checkout dev アクティブなブランチを切り替える
git checkout -b features ローカルで新しいブランチを作成し、そのブランチに切り替える
git pull リモートの変更をローカルに取得、更新する
git fetch リモートの変更をローカルに取得する
git merge origin/main fetchで取得した変更でローカルを更新する
git add 変更をすべてステージングする
git commit -m "コミット時コメント" ステージングした内容をコミットする
git status ローカルの変更状態を確認する
git diff ローカルで比較して差分を表示する
git push origin main リモートに変更を送信する
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?