UbuntuUpdates.org

3rd Party Repository: nodejs v012

This repository is available for:


Title: Node.js v0.12
Description:

Node.js v0.12 is finally here! But the incubation period has been particularly long, with the v0.11 branch diverging significantly from what we have been used to in v0.10. While serious attempts have been made to keep the Node.js API stable, there are some major changes that will cause upgrade pain for some. Most notably:

Streams3: the hybrid old/new approach of Streams2 has gone and we now simply have "flowing" and "not flowing" streams. While the external API should remain consistent, upgrade pain may come in the form of edge-cases.

HTTP Agent: instead of the somewhat arbitrary limit of 5 simultaneous connections per host for the HTTP client, the limit is now Infinity, which should improve performance and predictability. Unfortunately, heavy HTTP client users will likely run in to new errors when hitting operating system limits.

V8: while not obvious, changes to the way V8 executes your code may leave you with unexpected behaviour. Specifically, the performance profile will have changed and changes to the garbage collector may leave you with unexpected performance changes, memory use changes and even expose some bugs previously hidden due to assumptions of how the garbage collector works (this is particularly true for native addons).

Native (C++) Addons: here lies the biggest pain for upgrades to Node.js v0.12. During the v0.11 development cycle, V8 had a major overhaul of its C++ API. These significant changes were the inspiration for the NAN project which provides a compatibility layer between different versions of V8.

Daily Build: no

Download the the repository key with:

curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -

Then setup the repository:

$ sudo sh -c "echo deb https://deb.nodesource.com/node_0.12 xenial main \
> /etc/apt/sources.list.d/nodesource.list"
$ sudo apt-get update
$ sudo apt-get install nodejs
More info at: https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions


Links


Most recent updates in nodejs v012 PPA (Xenial)

Date Package Version
2016-12-22 01:10:49 UTC nodejs 0.12.18-1nodesource1~xenial1
2016-10-18 23:08:14 UTC nodejs 0.12.17-1nodesource1~xenial1
2016-09-28 07:08:05 UTC nodejs 0.12.16-1nodesource1~xenial1
2016-06-24 06:08:05 UTC nodejs 0.12.15-1nodesource1~xenial1
2016-05-06 18:08:37 UTC nodejs 0.12.14-1nodesource1~xenial1


Packages in PPA for Xenial

Deleted packages are displayed in grey.

Head packages

Dependent packages



Comments

blog comments powered by Disqus

About   -   Send Feedback to @ubuntu_updates