1. 程式人生 > >雲主機CentOS 7新環境命令行搭建node工程步驟

雲主機CentOS 7新環境命令行搭建node工程步驟

config and http ons sed sil class install base

1.用Node官網提供的命令安裝node https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions

步驟a. curl --silent --location https://rpm.nodesource.com/setup_6.x | sudo bash -

步驟b. sudo yum -y install nodejs

2.切換npm鏡像源

步驟a. npm config set registry https://registry.npm.taobao.org --global

步驟b. npm config set disturl https://npm.taobao.org/dist --global

3.這步可省略,只是舉個例子

 touch hello.js 創建一個新js文件,vi hello.js 輸入i進入編輯模式,編輯為console.log(‘hello world‘),ESC進入命令行模式,輸入:wq保存退出vi, node hello.js,輸出hello world。

雲主機CentOS 7新環境命令行搭建node工程步驟