Mac brew安裝node 及npm用法- 程式人生
文章推薦指數: 80 %
npm init //this utility will walk you through createing a package.json file. //it covers the most common items, and tries to guess sane defaults ...
程式人生>>Macbrew安裝node及npm用法
Macbrew安裝node及npm用法
阿新••發佈:2019-02-17
使用brew安裝node,首先先對brew進行檢查brewupdate
brewdoctor如果報這個錯:Warning:Homebrew'ssbinwasnotfoundinyourPATHbutyouhaveinstalled
formulaethatputexecutablesin/usr/local/sbin.
ConsidersettingthePATHforexamplelikeso
echo'exportPATH="/usr/local/sbin:$PATH"'>>~/.bash_profile解決方法:exportPATH="/usr/local/bin:$PATH"
source~/.bash_profile然後進行安裝brewlinknode
brewuninstallnode
brewinstallnode安裝node成功。
在使用nodejs時,首先要設定一個工作資料夾,並對其初始化和新增各種dependencies。
建立資料夾後,首先:npminit
//thisutilitywillwalkyouthroughcreateingapackage.jsonfile.
//itcoversthemostcommonitems,andtriestoguesssanedefaults.然後安裝各種依賴dependecies,它們會被安裝在node_module包裡。
下面舉幾個例子。
npminstallweb3
npminstallweb3-eth
npminstallethereumjs-tx
npminstallfast-csv語法為:npminstall
nodejs使用這些依賴時,要用varxx=requires('xxx')去使用。
還可以全域性安裝:npminstall
nodeinstall-g才會把module安裝到node全域性不加-g預設安裝到當前工程別的工程不可見。
注:fs是node自帶的功能,所以不需要npminstallfsnpm是node.js自帶的功能參考文章: npminitnode通過指令建立一個package.json檔案及npm安裝package.json【連結】nodejsnpminstall全域性安裝和本地安裝的區別【連結】NPM使用介紹
javaswing設定窗體無邊框後滑鼠還能拖動窗體的方法
«上一篇
第二彈Linux基礎一mkdir/cp/mv/rm/zip/unzip命令詳解下一篇»
相關推薦
Macbrew安裝node及npm用法
使用brew安裝node,首先先對brew進行檢查brewupdate
brewdoctor如果報這個錯:Warning:Homebrew'ssbin...
使用NVM安裝Node及NPM
前言
因為之前未使用nvm直接安裝的node,導致後來使用nvm切換node無效,上網查了下各種云云:nvm對windows系統支援不好...就在打算...
【原】Mac下使用Brew安裝node出錯
今天想在Mac下安裝ReactNative開發環境...
Mac環境下安裝PHP及使用xdebug除錯
Mac環境下安裝PHP及使用xdebug除錯
最近在公司裡需要寫一些PHP指令碼,因此又重新看了一下PHP的基礎語法.由於本人的使用Mac,因此這...
Mac安裝Nginx及使用中遇到的坑
1.安裝(可以用brew安裝)
sudobrewinstallnginx
2.檢視nginx版本
nginx...
如何在Mac上安裝Node.js和NPM
原作者:DaveMcFarland 翻譯轉載:https://blog.teamtreehouse.com/install-n...
MacBrew安裝、使用、解除安裝詳解
定義全域性變數
//主要brew命令目錄/usr/local/bin注:homebrew在安裝完成後自...
mac下使用brew安裝java等應用
可以使用brew安裝很多應用,比如java,idea,iterms,sublime
brewtapcaskroom/versionsbrewcaski...
Mac安裝/解除安裝node和npm的方法
1.如果電腦已經安裝node8以上版本請跳過第二步
2.如果沒有,請執行以下步驟
2.1解除安裝當前...
MicrosoftOffice2016forMac(安裝包及啟用工具)
雖說Mac自帶的Numbers可以編輯文件;但匯出為word型別,總會出現文件格式紊亂;由此在網上尋覓了許久,找到以下安裝包:
連結:...
搜尋
基礎教學
Mysql入門
Sql入門
Android入門
Docker入門
Go語言入門
Ruby程式入門
Python入門
Python進階
Django入門
Python爬蟲入門
最近訪問
延伸文章資訊
- 1homebrew - npm
Start using homebrew in your project by running `npm i homebrew`. There are no other projects in ...
- 2Mac brew安裝node 及npm用法- 程式人生
npm init //this utility will walk you through createing a package.json file. //it covers the most...
- 3How to Install Node.js and NPM on Mac - phoenixNAP
1. Type the following command to install Node.js and NPM: brew install node · 2. When the install...
- 4How to install NodeJS and NPM on Mac using Homebrew
Homebrew is the missing package manager for macOS. Paste the following in a macOS Terminal prompt...
- 5How to install Node.js and npm on macOS - Fullstack.io