步驟1:用curl獲取源代碼
在咱們用捲曲獲取源代碼以前,咱們必須先升級操做系統,而後用捲髮命令獲取NodeSource添加到本地倉庫。node
root@ubuntu-15:~#apt-get update 安裝apt-get install curl和apt-get install sudo root@ubuntu-15:~# curl -sL https://deb.nodesource.com/setup | sudo bash -
步驟2:安裝NodeJS和NPM
運行以上命令以後若是輸出如上所示,咱們能夠用apt-get的命令來安裝和的NodeJS NPM包。npm
root@ubuntu-15:~# apt-get install nodejs
NodeJS安裝
NodeJS安裝
步驟3:安裝一些必備的工具
經過如下命令來安裝編譯安裝一些咱們必需的本地插件。json
root@ubuntu-15:~# apt-get install -y build-essential
經過Node.JS Shell來測試
測試的Node.js的步驟與以前使用源代碼安裝類似,經過如下節點命令來確認的Node.js是否徹底安裝好:ubuntu
root@ubuntu-15:~# node > console.log('Node.js Installed Using Package Manager'); Node.js Installed Using Package Manager root@ubuntu-15:~# node > a = [1,2,3,4,5] [ 1, 2, 3, 4, 5 ] > typeof a 'object' > 5 + 2 7 > (^C again to quit) > root@ubuntu-15:~#
使用的NodeJS應用進行簡單的測試
REPL是一個Node.js的的外殼,任何有效的JavaScript的代碼都能在REPL下運行經過。因此讓咱們看看在Node.js的下的REPL是什麼樣子吧。bash
root@ubuntu-15:~# node > var repl = require("repl"); undefined > repl.start("> "); Press Enter and it will show out put like this: > { domain: null, _events: {}, _maxListeners: 10, useGlobal: false, ignoreUndefined: false, eval: [Function], inputStream: { _connecting: false, _handle: { fd: 0, writeQueueSize: 0, owner: [Circular], onread: [Function: onread], reading: true }, _readableState: { highWaterMark: 0, buffer: [], length: 0, pipes: null, ... ...
如下是能夠在REPL下使用的命令列表dom
使用的NodeJS的包管理器
故宮是一個提供給節點腳本持續生命力的命令行工具,它能經過的package.json來安裝和管理依賴包。最開始從初始化命令初始化開始curl
root@ubuntu-15:~# npm init