Skip to content

Commit

Permalink
Merge pull request #351 from jperkin/patch-1
Browse files Browse the repository at this point in the history
Update package-manager.md
  • Loading branch information
lpinca committed Nov 19, 2015
2 parents acb261f + b19b831 commit 44ac1ca
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 44ac1ca

Please sign in to comment.