How to install Node.Js on FreeBSD 12
Node.jsĀ® is a JavaScript runtime built on Chrome’s V8 JavaScript engine.Node is designed to build scalable network applications
As its well known, installing packages on FreeBSD can be done through pkg for installing binary packages and from source using port collection.
Install nodejs via pkg:
pkg install node
compile it on your own using ports:
cd /usr/ports/www/node && make install
References:
nodejs.org