Skip to content

Commit

Permalink
Update package-manager.md
Browse files Browse the repository at this point in the history
Add installation instructions for NetBSD, SmartOS, and other illumos distributions.  Add pkgsrc as an alternative for OSX.
  • Loading branch information
jperkin committed Nov 11, 2015
1 parent 87912b7 commit b19b831
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions locale/en/download/package-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ title: Installing Node.js via package manager
* [Arch Linux](#arch-linux)
* [Void Linux](#void-linux)
* [FreeBSD and OpenBSD](#freebsd-and-openbsd)
* [NetBSD](#netbsd)
* [OSX](#osx)
* [SmartOS and illumos](#smartos-and-illumos)
* [Windows](#windows)

----------------------------
Expand Down Expand Up @@ -259,6 +261,20 @@ Or the development versions:
pkg install node-devel
```

## NetBSD

Node.js is available in the pkgsrc tree:

```bash
cd /usr/pkgsrc/lang/nodejs && make install
```

Or install a binary package (if available for your platform) using pkgin:

```bash
pkgin -y install nodejs
```

## OSX

Simply download the [Macintosh Installer](http://nodejs.org/#download) direct from the [nodejs.org](http://nodejs.org) web site.
Expand All @@ -283,6 +299,34 @@ Using **[MacPorts](http://www.macports.org/)**:
port install nodejs
```

Using **[pkgsrc](https://pkgsrc.joyent.com/install-on-osx/)**:

Install the binary package:

```bash
pkgin -y install nodejs
```

Or build manually from pkgsrc:

```bash
cd pkgsrc/lang/nodejs && bmake install
```

## SmartOS and illumos

SmartOS images come with pkgsrc pre-installed. On other illumos distributions, first install **[pkgsrc](https://pkgsrc.joyent.com/install-on-illumos/)**, then you may install the binary package as normal:

```bash
pkgin -y install nodejs
```

Or build manually from pkgsrc:

```bash
cd pkgsrc/lang/nodejs && bmake install
```

## Windows

Simply download the [Windows Installer](http://nodejs.org/#download) directly from the [nodejs.org](http://nodejs.org) web site.
Expand Down

0 comments on commit b19b831

Please sign in to comment.