Quantcast
Channel: LinuxG.net » how to install nodejs on opensuse
Viewing all articles
Browse latest Browse all 2

How To Install Node.js 0.10.33 On The Latest Ubuntu, Debian, Fedora, CentOS And OpenSUSE Systems

$
0
0

Hello Linux Geeksters. As you may know, Node.js is an open-source development platform built on Chrome’s JavaScript run-time, for creating network applications. It uses an event-driven, non-blocking I/O model, perfect for data-intensive real-time applications that run across distributed devices. Also worth mentioning, the npm (NoteJS package manager) is integrated in the nodejs package.

The latest version available is Node.js 0.10.33, which comes with the below changes:

  • openssl: Update to 1.0.1j (Addressing multiple CVEs)
  • uv: Update to v0.10.29
  • child_process: properly support optional args (cjihrig)
  • crypto: Disable autonegotiation for SSLv2/3 by default

how to install Node.js 0.10.33 on Ubuntu 14.10 Utopic Unicorn, Ubuntu 14.04 Trusty Tahr, Ubuntu 12.04, Linux Mint 17 Qiana, Linux Mint 13 Maya, Pinguy OS 14.04, Elementary OS 0.3 Freya, Elementary OS 0.2 Luna, Deepin 2014, Peppermint Five, LXLE 14.04, Linux Lite 2.0, Debian Jessie, Debian Wheezy, Fedora 21, Fedora 20, Fedora 19, CentOS 7, CentOS 6, OpenSUSE 13.1 and OpenSUSE 12.3.

In this article I will show you how to install Node.js 0.10.33 on Ubuntu 14.10 Utopic Unicorn, Ubuntu 14.04 Trusty Tahr, Ubuntu 12.04, Linux Mint 17 Qiana, Linux Mint 13 Maya, Pinguy OS 14.04, Elementary OS 0.3 Freya, Elementary OS 0.2 Luna, Deepin 2014, Peppermint Five, LXLE 14.04, Linux Lite 2.0, Debian Jessie, Debian Wheezy, Fedora 21, Fedora 20, Fedora 19, CentOS 7, CentOS 6, OpenSUSE 13.1 and OpenSUSE 12.3.

Because it is available via repository, installing Node.js 0.10.33 on Linux systems is easy. All you have to do is add the repository to your system, update the local repository index and install the desired packages. Follow the instructions for your system exactly, in order to get a successful installation.

How to install Node.js 0.10.33 Ubuntu, Debian and their derivative systems:

$ sudo apt-get install curl
$ sudo curl -sL https://deb.nodesource.com/setup | sudo bash -
$ sudo apt-get install nodejs

Optional, to remove nodejs, do:

$ sudo apt-get remove nodejs

How to install Node.js 0.10.33 Fedora, CentOS and their derivative systems:

$ sudo yum install curl
$ sudo curl -sL https://rpm.nodesource.com/setup | sudo bash -
$ sudo yum install nodejs

Optional, to remove nodejs, do:

$ sudo yum remove nodejs

How to install Node.js 0.10.33 OpenSUSE 13.1 systems:

$ sudo zypper ar http://download.opensuse.org/repositories/devel:/languages:/nodejs/openSUSE_13.1/ Node.js
$ sudo zypper refresh
$ sudo zypper in nodejs nodejs-devel

How to install Node.js 0.10.33 OpenSUSE 12.3 systems:

$ sudo zypper ar http://download.opensuse.org/repositories/devel:/languages:/nodejs/openSUSE_12.3/ Node.js
$ sudo zypper refresh
$ sudo zypper in nodejs nodejs-devel

Optional, to remove nodejs, do:

$ sudo zypper remove nodejs nodejs-devel

Share and Enjoy

TwitterFacebookGoogle PlusEmailRSS

Viewing all articles
Browse latest Browse all 2

Latest Images

Trending Articles





Latest Images