Finding people on Mastodon is still difficult. If you have a GitHub account, you can help others find you by linking from it to your Mastodon account.
In this blog post, I’d like to explain how to get started with Mastodon.
JavaScript decorators have finally reached stage 3! Their latest version is already supported by Babel and will soon be supported by TypeScript.
This blog post covers the 2022-03 version (stage 3) of the ECMAScript proposal “Decorators” by Daniel Ehrenberg and Chris Garrett.
A decorator is a keyword that starts with an @
symbol and can be put in front of classes and class members (such as methods). For example, @trace
is a decorator:
class C {
@trace
toString() {
return 'C';
}
}
A decorator changes how the decorated construct works. In this case, every invocation of .toString()
will be “traced” (arguments and result will be logged to the console). We’ll see how @trace
is implemented later.
This blog post explores how to write CommonJS modules so that their exports can be name-imported from ESM modules on Node.js.
This blog post gives an overview of how Node.js works:
The npm package manager lets us define small shell scripts for tasks and execute them via npm run
. In this blog post, we explore how that works and how we can write them in a way that works across platforms (Unixes and Windows).
The package.json
property "bin"
lets an npm package specify which shell scripts it provides (for more information, see “Creating ESM-based shell scripts for Unix and Windows with Node.js”). If we install such a package, Node.js ensures that we can access these shell scripts (so-called bin scripts) from a command line. In this blog post, we explore two ways of installing packages with bin scripts:
Locally installing a package with bin scripts means installing it as a dependency inside a package. The scripts are only accessible within that package.
Globally installing a package with bin scripts means installing it in a “global location” so that the scripts are accessible everywhere – for either the current user or all users of a system (depending on how npm is set up).
We explore what all of that means and how we can run bin scripts after installing them.
util.parseArgs()
in Node.jsIn this blog post, we explore how to use the Node.js function parseArgs()
from module node:util
to parse command line arguments.
In this blog post, we learn how to implement shell scripts via Node.js ESM modules. There are two common ways of doing so:
In this blog post, we use TypeScript to ensure that an object stays in sync with an Array that lists its properties.