Skip to content

Commit 44ac1ca

Browse files
committed
Merge pull request #351 from jperkin/patch-1
Update package-manager.md
2 parents acb261f + b19b831 commit 44ac1ca

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

locale/en/download/package-manager.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ title: Installing Node.js via package manager
1616
* [Arch Linux](#arch-linux)
1717
* [Void Linux](#void-linux)
1818
* [FreeBSD and OpenBSD](#freebsd-and-openbsd)
19+
* [NetBSD](#netbsd)
1920
* [OSX](#osx)
21+
* [SmartOS and illumos](#smartos-and-illumos)
2022
* [Windows](#windows)
2123

2224
----------------------------
@@ -259,6 +261,20 @@ Or the development versions:
259261
pkg install node-devel
260262
```
261263

264+
## NetBSD
265+
266+
Node.js is available in the pkgsrc tree:
267+
268+
```bash
269+
cd /usr/pkgsrc/lang/nodejs && make install
270+
```
271+
272+
Or install a binary package (if available for your platform) using pkgin:
273+
274+
```bash
275+
pkgin -y install nodejs
276+
```
277+
262278
## OSX
263279

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

302+
Using **[pkgsrc](https://pkgsrc.joyent.com/install-on-osx/)**:
303+
304+
Install the binary package:
305+
306+
```bash
307+
pkgin -y install nodejs
308+
```
309+
310+
Or build manually from pkgsrc:
311+
312+
```bash
313+
cd pkgsrc/lang/nodejs && bmake install
314+
```
315+
316+
## SmartOS and illumos
317+
318+
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:
319+
320+
```bash
321+
pkgin -y install nodejs
322+
```
323+
324+
Or build manually from pkgsrc:
325+
326+
```bash
327+
cd pkgsrc/lang/nodejs && bmake install
328+
```
329+
286330
## Windows
287331

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

0 commit comments

Comments
 (0)