Next step - node.js setup on Ubuntu. This was remarkably easy! I went to https://nodejs.org/ and viewed their Downloads section, where I then went to “Installing from package managers”. That link takes you to this URL on GitHub. If you read the first line of “Debian and Ubuntu based Linux distributions”, you’ll note you should go to nodesource’s blog post for the most up to date instructions. I did what I was told - read what they have to say on the page - helpful stuff!

The instructions to install are as follows:

Open a new crosh window or use ctrl+alt+t and type:

shell

To get into Ubuntu, type:

sudo startxfce4

Inside Ubuntu, click on the Terminal Emulator icon

You now need curl (a tool for making http calls, etc. - http://en.wikipedia.org/wiki/CURL), so get it - type:

sudo apt-get install curl

The instructions from nodesource’s blog post say to then enter the following:

# Note the new setup script name for Node.js v0.12
curl -sL https://deb.nodesource.com/setup_0.12 | sudo bash -
# Then install with:
sudo apt-get install -y nodejs

Type node to start node..

That’s it! node.js is installed in Ubuntu inside my chromebook!

There are a TON of node.js intros, etc. that I’ve been pouring over for a while now - I’m not going to bother to explain the basics of node as it’s extremely well documented. I will now start to write some small pl/sql and js programs using the node-oracledb driver and will continue to blog as things progress in that area… That’s it for today!