Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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