2020 12 13node 常用命令

2021-10-12 00:01:01 字數 1201 閱讀 7552

浪裡白條那片海 2018-08-27 13:47:33

分類專欄: npm 文章標籤: node

npm -init  初始化專案,新建package.json 專案描述檔案,裡面有專案的入口檔案指定

npm -v          #顯示版本,檢查npm 是否正確安裝。

npm install express   #安裝express模組

npm install -g express  #全域性安裝express模組

npm list         #列出已安裝模組

npm show express     #顯示模組詳情

npm update        #公升級當前目錄下的專案的所有模組

npm update express    #公升級當前目錄下的專案的指定模組

npm update -g express  #公升級全域性安裝的express模組

npm uninstall express  #刪除指定的模組

1. 檢視node版本

node --version

2. 檢視npm 版本,檢查npm 是否正確安裝。

npm -v

npm install cnpm -g --registry=

4. 安裝express模組

npm install express

5. 全域性安裝express模組

npm install -g express

6. 列出已安裝模組

npm list

7. 顯示模組詳情

npm show express

8. 公升級當前目錄下的專案的所有模組

npm update

9. 公升級當前目錄下的專案的指定模組

npm update express

10. 公升級全域性安裝的express模組

npm update -g express

11. 刪除指定的模組

npm uninstall express

12. 更新node 版本

首先需要確保是否安裝 n 模組,這個是node公升級需要

沒有安裝執行:npm i n -g -f

檢測使用: n --version

更新node命令:n stable

13. node 引入模組使用 require

node常用命令

pwd 顯示當前工作目錄 cd 切換資料夾 cd 返回上一級目錄 cls 清空當前控制台 mkdir 建立資料夾 ls 顯示當前目錄所有資料 rm 刪除檔案 npm v 檢視npm版本 node v 檢視node版本 node js 執行js檔案 node 進入命令互動模式 sudo npm ins...

node 的常用命令

npm v 顯示版本,檢查npm 是否正確安裝。npm install express 安裝express模組 npm install g express 全域性安裝express模組 npm list 列出已安裝模組 npm show express 顯示模組詳情 npm update 公升級當前...

node常用模組整理

一 util 是 node 裡面乙個工具模組 node 裡面幾乎所有的模組 都會用到 在這個模組 功能 1 實現繼承 這是主要功能 2 實現物件的完整輸出 3 實現判斷資料型別 引入工具類 var util require util function parent 繼承parent的外加屬性 為外部...