Hands-On Blockchain for Python Developers
上QQ阅读APP看书,第一时间看更新

Installing Node.js

Node.js is a popular framework for developing web applications, mobile applications, and decentralized applications. Head to https://nodejs.org and download the latest version (which is version 10 at the time of writing). Here is how to install Node.js on the Ubuntu Linux platform:

$ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
$ sudo apt-get install -y nodejs
$ node --version
v10.15.0