Installing Nodejs is an important part of getting your Chromebook up and running for Web Development. With the addition of Linux apps and the terminal developers can now install Nodejs and gain access to NPM. I will walk you through how to install it, but first you need to install the terminal. If you have not done this you can see how to at by reading Web Development With a Chromebook: TerminalβββSetup.
- Open your terminal
- Get updates by running:
- sudo apt-get update
- Install curl and gnupg:
- sudo apt-get install curl gnupg -y
- Install Nodejs:
- curl -sl https://deb.nodesource.com/setup_10.x | sudo -E bash - sudo apt-get install -y nodejs
For different versions you can visit the Nodejs page.
Top comments (0)