Skip to content

Instantly share code, notes, and snippets.

@pylover
pylover / install-nodejs.sh
Created August 2, 2021 19:24
Install nodejs from source on FreeBsd
#! /usr/bin/env bash
# Prerequicites
pkg install gcc openssl-devel
# Clone the source
git clone git@github.com:nodejs/node.git -b v16.x --depth 1
# Configure and Build