- Hands-On Blockchain for Python Developers
- Arjuna Sky Kok
- 63字
- 2021-07-02 13:13:07
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