---
title: Node.js
kind: note
description: Link Resources Command-line utilities with Node.js One often overlooked feature of node.js is the ability to create command-line utilities. Here I want to demonstrate how simple it can be to create…
words: 127
readingMinutes: 1
created: '2024-06-12T19:16:18+02:00'
updated: '2026-06-29T13:10:58+02:00'
website: https://nodejs.org/
---
## Link

<https://nodejs.org/>

# Resources
- [Command-line utilities with Node.js](https://cruft.io/posts/node-command-line-utilities/)
  > One often overlooked feature of [node.js](http://nodejs.org/) is the ability to create command-line utilities. Here I want to demonstrate how simple it can be to create useful command-line utilities with the help of node.js.
- [Command Line Utilities with Node.js](https://shapeshed.com/command-line-utilities-with-nodejs/)
  > Node.js is a great platform for creating small command line utilities, especially where I/O occurs.
- [NodeSchool](https://nodeschool.io/)
  > Open source workshops that teach web software skills. Do them on your own or at a workshop nearby.
# Frameworks
- [Meteor](https://www.meteor.com/)
  > Meteor is an open source framework for seamlessly building and deploying Web, Mobile, and Desktop applications in Javascript.
# Version managers
- [nvm-sh/nvm](https://github.com/nvm-sh/nvm) - the traditional <span class="dead-link">POSIX</span>-compliant [bash](/notes/bash) script
- [Schniz/fnm](https://github.com/Schniz/fnm) - built in <span class="dead-link">Rust</span>
- [Volta](https://volta.sh/) - for reproducible environments
# Services
## Hosting
- [Ampt](https://getampt.com/)
# FAQ
### Installing on Ubuntu 22.04
```shell
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
source ~/.bashrc
nvm install lts/*
```
- [Source](https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-22-04)
