/nodejs-cli-apps-best-practices

The largest Node.js CLI Apps best practices list ✨

Creative Commons Attribution Share Alike 4.0 InternationalCC-BY-SA-4.0

Node.js CLI Apps Best Practices

Node.js CLI Apps Best Practices

A collection of curated best practices on how to build successful, empathic and user-friendly Node.js Command Line Interface applications.

Why this guide?

Building successful CLIs requires great attention for details, an increased sense of empathy for the user and a good level user experience. It is very easy to get wrong, and a bad CLI can easily discourage users from interacting with it.

In this guide I have compiled a list of best practices across areas of focus which aim to optimize for the ideal user experience when interacting with a command line application.

Features:

  • ✅ 21 best practices for building successful Node.js CLI applications
  • ❤️ Help translate to other languages: [ 🇪🇸 , 🇩🇪 , ? ]
  • 🙏 Contributions are welcome
  • Last update: 2020-02-13

Why me?

My name is Liran Tal and I'm addicted to building command line applications.

Some of my recent work of building Node.js CLIs include the following opensource projects:

dockly - Immersive terminal interface for managing docker containers and services
Dockly

Immersive terminal interface for managing docker containers and services
npq - safely install packages with npm/yarn by auditing them as part of your install process
npq

safely install packages with npm/yarn by auditing them as part of your install process
lockfile-lint - Lint an npm or yarn lockfile to analyze and detect security issues
lockfile-lint

Lint an npm or yarn lockfile to analyze and detect security issues
is-website-vulnerable - finds publicly known security vulnerabilities in a website's frontend JavaScript libraries
is-website-vulnerable

finds publicly known security vulnerabilities in a website's frontend JavaScript libraries


Table of Contents




1 Command Line Experience

This section deals with best practices concerned with creating beautiful and high-value user experience Node.js command line applications.

In this section:


1.1 Respect the POSIX

Do: Use POSIX-compliant command line argument syntax, which is widely accepted as a standard for command line tools.

Otherwise: Users may get frustrated when CLIs syntax for arguments, options or command parameters deviate from defacto standards that they are used to from the Unix world.

➡️ Details

Unix-like operating systems popularized the use of the command line and tools such as awk, sed. Such tools have effectively standardized the behavior of command line options (aka flags), options-arguments, and other operands.

Some examples of expected behavior:

  • option-arguments or options can be notated in help or examples as square brackets ([]) to indicate they are optional, or with angle brackets (<>) to indicate they are required.
  • options specified using the short form singular - may container one alphanumeric character.
  • specifying multiple options with no values may be grouped, such as myCli -abc being equivalent to myCli -a -b -c.

Command line power users will expect a command line application to have similar conventions as those in the Unix family.


1.2 Build empathic CLIs

Do: Put workflows in place that assist the user to interact with the CLI successfully when otherwise such interactions will result in errors and frustration.

Otherwise: Failing to provide actionable assistance in supporting the user will result in frustration due to the lack of capability to operate the CLI.

➡️ Details

A command line interface for your program is no different than a web user interface in the sense of doing as much as you can as the program author to ensure that it is being used successfully.

Optimize for successful interactions by building empathic CLIs that support the user. As an example, let's explore the case of the curl program that expects a URL as its primary data input and the user failing to provide it. Such failure will lead to reading through a (hopefully) descriptive error messages or reviewing a curl --help output. However, an empathic CLI would have presented an interactive prompt to capture input from the user, resulting in a successfull interaction.


1.3 Stateful data

Do: Provide a stateful experience between numerous invocations of the CLI app and remember values and data in order to provide a seamless and stateful interaction.

Otherwise: Requiring the user to repeatedly provide the same information with multiple invocations of the CLI is cumbersome and unuseful.

➡️ Details

It may happen that you find yourself needing to provide storage persistence for your CLI application, such as remembering a username, email, API token or other preferences between multiple invocations of the CLI. Use a configuration helper that allows to persist such user settings that your CLI is able to read and write to.

Reference projects:


1.4 Provide colorful experience

Do: Make use of colors in your CLI application to highlight and structure a program's output, but provide a graceful degradation or color-detection to allow automatic opt-out so that output isn't garbled.

Otherwise: Information may easily get lost in pale program output, especially when the output is text-heavy.

➡️ Details

Most terminals used today to interact with command line applications support colored text such as these enabled by specially crafted ANSI encoded characters.

A colorful display in your command line application output may further contribute to a richer experience and increased interaction. This said, unsupported terminals may experience a degraded output in the form of garbled information on the screen. Furthermore, a CLI may be used in a continuous integration build job which may not support colored output.

Reference projects:

📦 Recommended packages

Reference to open source packages:


1.5 Rich interactions

Do: Leverage the use of rich command line interactions beyond the basics of text input prompt to provide a smoother experience for CLI users.

Otherwise: Text prompt as input may prove cumbersome for users when data to reason about is in the form of closed options (i.e: dropdowns).

➡️ Details

Rich interactivity can be introduced in the form of prompt inputs which are beyond free text form, such as dropdown select lists, radio button toggles, rating, auto-complete, or hidden password inputs.

Another type of rich interactivity is in the form of animated loaders and progress-bar which provide a better experience for users when asynchoronous work is being performed.

Some CLIs fit command line arguments without requiring any further interactive experience, and one shouldn't be forced upon them.

📦 Recommended packages

Reference to open source packages:


1.6 Hyperlinks everywhere

Do: Use properly formatted hyperlinks in text output for both URLs (e.g: https://www.github.com), as well as source code (e.g: src/Util.js:2:75) - both of which a modern terminal is able to transform into a clickable link that opens the correct context program.

Otherwise: Avoid broken and non-interactive links like git.io/abc which requires the user to copy and paste manually.

➡️ Details

If you are sharing links to URLs or pointing to a file and a specific line number and column in the file, you can provide properly formatted links to both of these examples that once clicked will open up the browser, or an IDE at the defined location.


1.7 Zero configuration

Do: Optimize a plug-and-play experience by auto-detecting required configuration and command line arguments values

Otherwise: Don't force user interactivity if a command-line argument can be auto-detected in a reliable way and the action invoked doesn't explicitly require user interaction (such as confirming a deletion).

➡️ Details

Aim to provide an experience of "works out of the box" when running the CLI application.

Reference projects which are built around Zero configuration:



2 Distribution

This section deals with best practices concerned with distributing and packaging a Node.js command line application in an optimal matter for consumers.

In this section:


2.1 Prefer a small dependency footprint

Do: Minimize your use of production dependencies, use alternative dependencies which are smaller, and vet your dependencies footprint as well for transitive dependencies cost to ensure an overall small bundle of the Node.js CLI. Be careful to not over-optimize on dependencies by reinventing the wheel.

Otherwise: The size and use of dependencies in the application will impact the install time of your Node.js CLI, potentially providing a poor user experience.

➡️ Details

A fast npm install for Node.js CLIs invoked with npx will provide a better user experience. This is made possible when the overall dependency and transitive dependency footprint is kept to a reasonable size.

Where-as with a global npm installation of a package, a slow-to-install npm package will be a one-off poor experience, the use of npx for users to invoke executable packages is more significant and visible in its degraded performance due to npx always fetching and installing packages from the registry.


2.2 Use the shrinkwrap, Luke

Do: Use npm's npm-shrinkwrap.json as a lockfile to ensure that pinned-down dependency versions (direct and transitive) propagate to your end users when they install your npm package.

Otherwise: Not forcing the versions of package dependencies will mean that the package manager (e.g. npm) will resolve them during installation, and transitive dependencies installed via version ranges may introduce breaking changes that you can't control, resulting with a potential breakage of a Node.js CLI application.

➡️ Details

Use the force shrinkwrap, Luke!

Typically, an npm package only defines its direct dependencies and their version range when being installed, and the npm package manager client will resolve all the transitive dependencies versions upon installation. Through time, the resolved versions of dependencies will vary as new direct and transitive dependencies will release new versions.

Even though Semantic Versioning is broadly accepted among maintainers, npm is known to introduce many dependencies for an average package being installed, which adds the risk of a package introducing breaking changes or regressions that render an application dependent on these as non-functional.

The flip side of using npm-shrinkwrap.json is the security implications you are forcing upon your consumers. The versions of dependencies being installed are pinned to specific versions, and so even if newer versions of these dependencies are released they won't be installed. This moves the responsibility on you, the maintainer, to stay up to date with security fixes in your dependencies, and release the CLI application regularly with security updates. Consider using Snyk Dependency Upgrade to automatically fix security issues across your dependency tree. Full disclosure: I am a developer advocate at Snyk.

👍 Tip

Use npm shrinkwrap command to generate the shrinkwrap lockfile, which is of the same format as that of a package-lock.json file.

References:



3 Interoperability

This section deals with best practices concerned with making the Node.js CLI seamlessly integrate with other command line tools and conventions which are natural for CLIs to operate in.

This section answer questions such as:

  • Can I export the output of this CLI for easy parsing?
  • Can I pipe the output of this CLI to the input of another command line tool?
  • Can I pipe the result of another tool to this CLI?

In this section:


3.1 Accept input as STDIN

Do: For command line applicatios that are expected to work with data, make it available for a consumer to pipe the data to standard input (STDIN).

Otherwise: Other command line applications will not be able to provide their result, directly as input for the CLI you build and it prevents common UNIX one-liners such as:

$ curl -s "https://api.example.com/data.json" | your_node_cli
➡️ Details

If the command line application works with data, such as performing some kind of task on a JSON file, which is usually specified with --file <file.json> command line argument


3.2 Enable structured output

Do: Enable a flag to allow structured output of the program's result, if such result is available, to enable parsing and easy manipulation of the data.

Otherwise: Users of the CLI may need to apply complicated regex parsing and matching techniques to extract the output data provided by your CLI.

➡️ Details

It is often useful for users of a command line application to parse the data and perform other tasks with it, such as using it to feed web dashboards, email notifications.

Being able to easily extract the data of interest from a command line output provides a friendlier experience to consumers of the CLI.


3.3 Cross-platform etiquette

Do: If a CLI is expected to function across platforms, a proper attention must be given to semantics of command shells and components such as file systems along with developers leveraging relevant programmig constructs.

Otherwise: The CLI will get crippled for other operatig systems by the smallest things such as incorrect path separator characters, even though there are no functional differences in the code.

➡️ Details

Even though from a program's perspective the functionality isn't being stripped down and SHOULD execute well in different operating systems, some missed nuances may render the program inoperable. Let's explore several cases where cross-platform ethics should be honored.

Wrongly spawning a command

You might need to spawn a process that runs a Node.js program. For example, you have the following script:

program.js

#!/usr/bin/env node
...
...

This works:

const cliExecPath = 'program.js'
const process = childProcess.spawn(cliExecPath, [])

Better, this is cross-platform too:

const cliExecPath = 'program.js'
const process = childProcess.spawn('node', [cliExecPath])

Why is it better? the program.js source code begis with the Unix-like Shebang notationl, however a Windows OS as an example, doesn't know how to interpret this. Mostly due to the fact that Shebang isn't a standardized thing and is expected to be used with absolute paths which differ between operating systems.

This is also true for package.json scripts. Consider the following bad practice of defining an npm run script:

"scripts": {
  "postinstall": "./bin/myInstall.js"
}

This is due to the fact that the Shebang in myInstalls.js will not help Windows understand how to run this with the node interpreter.

Instead, follow the best practice of:

"scripts": {
  "postinstall": "node bin/myInstall.js"
}

Shell interpreters vary

Not all characters are treated the same across different shell interpreters.

For example, the Windows command prompt doesn't treat a single quote the same as a double quote, as would be expected on a bash shell, and so it doesn't recognize that the whole string inside a single quote belongs to the same string group, which will lead to errors.

This will fail in a Windows Node.js environment that uses the Windows command prompt:

package.json

"scripts": {
  "format": "prettier-standard '**/*.js'",
  ...
}

To fix this so that this npm run script will indeed be cross-platform between Windows, macOS and Linux:

package.json

"scripts": {
  "format": "prettier-standard \"**/*.js\"",
  ...
}

In this example we had to use double quotes and escape them with the JSON notation.

Avoid concatenating paths

Paths identify differently acorss different platforms, and when they are built manually by concatenating string they are bound not to be interoperable between different platforms.

Let's consider the following example which is an example of a bad practice:

   const myPath = `${__dirname}/../bin/myBin.js`

It assumes that forward slash is the path separator where on Windows, for example, a backslash is used.

Instead of manually building filesystem paths, defer to Node.js's own path module to do this:

   const myPath = path.join(__dirname, '../bin/myBin.js`)

Avoid chaining commands with semicolons

Linux shells are known to support a semicolon (;) to chain commands to run sequentially, such as: cd /tmp; ls. However, doing the same on Windows will fail.

Avoid doing the following:

  const process = childProcess.exec(`${cliExecPath}; ${cliExecPath2}`)

Instead, use the double ampersand or double pipe notations:

  const process = childProcess.exec(`${cliExecPath} || ${cliExecPath2}`)

3.4 Allow environment overrides

Do: Allow configuration to be read from environment variables, and when it conflicts with command line arguments then allow environment variables to override.

Otherwise: Invoking the CLI with customized configuration will not be possible.

➡️ Details

Detect and support configuration setting using environment variables as this will be a common way in many toolchain to modify the behavior of the invoked CLI application.

Moreover, a CLI application may be invoked in a way that requires a dynamic environmen variable setting to resolve configuration or flags values, in a way that doesn't allow passing command line arguments or simply makes defining this information via command line arguments very repeatitive and cumbersome.

When both a command line argument and an environment variable configure the same setting, a precedence should be granted to environment variables to override the setting.



4 Accessibility

This section deals with best practices concerned with making a Node.js CLI application available to users who wish to consume it but are lacking an ideal environment than that which the maintainer designed the application.

In this section:


4.1 Containerize the CLI

Do: Create a docker image for the CLI and publish it to a public registry like Docker Hub so that users without a Node.js environment can use it.

Otherwise: Users without a Node.js environment will not have npm easily available and won't be able to run your CLI application.

➡️ Details

Installing Node.js CLI applications from the npm registry will typically be done with Node.js native toolchain such as npm or npx. These are common across JavaScript and Node.js developers, and are expected to be referenced within install instructions.

However, if you are targeting a CLI application to be consumed by the general public, regardless of their affiliation with JavaScript or availability of this tooling, then distributing the CLI application only in the form of an install from the npm registry will be restricting. Moreover, if the CLI application is intended to be used in a build or CI environment then those may also be required to install Node.js related toolchain dependencies.

There are many forms of packaging and distributing an executable and containerizing it as a Docker container that is pre-bundled with your CLI application is an easily consumable alternative and dependency-free (aside of requiring a Docker environment ready).


4.2 Graceful downplay

Do: Provide users with the ability to opt-out of colorful and animation-rich display in unsupported environments, such as by skipping interactivity and providing formatted output in the form of JSON.

Otherwise: Having colorful output, using terminal interactive such as prompts and other display-rich interfaces may significantly degrade the end user experience for users not having a supported terminal and deter them away from using the CLI application.

➡️ Details

It is common to provide a rich terminal display in the form of colorful output, ascii charts, or even animation on the terminal and powerful prompt mechanism. These may contribute to a great a user experience for those who have a supported terminal, however it may display garbled text or be completely inoperable for those without it.

To enable users with unsupported terminal to properly use the Node.js CLI application, one may choose to:

  • Auto-detect a terminal capability and evaluate during run-time whether to downplay the CLI interactivity
  • Provide an opt-in for users to explicitly toggle a graceful downplay such as by providing a --json command line argument to force it.
👍	Tip

	Supporting a graceful downplay such as JSON output isn't only useful for
	end-users and their unuspported terminals but is also valuable for running
	in build and continuous integration environments, as well as enabling users
	the ability to connect your program's output with other program's input or
	export data if needed.

4.3 Node.js versions compatibility

Do: Target supported and maintained Node.js versions.

Otherwise: Maintaining a code-base that is compatible with older and unsupported Node.js versions will be difficult to maintain, and lose the benefits of language and runtime features.

➡️ Details

Sometimes it may be necessary to specifically target older Node.js versions which are missing new ECAMScript specification. For example, if you are building a Node.js CLI that is mostly geared towards DevOps or IT, they may not have an ideal Node.js environment with an up to date runtime. As a reference, Debian Stretch (oldstable) ships with Node.js 8.11.1.

If you do need to target old versions of Node.js such as Node.js 8, 6 or 4, all of which are End of Life, prefer to employe a transpiler such as Babel to make sure the generated code is compliant with the version of the V8 JavaScript engine and the Node.js run-time shipped with those versions.

Another workaround is to provide a container version of the CLI to avoid old targets. See Section (4.1) Containerize the CLI.

Don't level down the program code to use an older ECMAScript language specification that matches unmaintained or EOL Node.js versions that you target as this will only lead to complex code maintenance in time and will warrant a technical debt from the beginning.


4.4 Shebang autodetect the Node.js runtime

Do: Use an installation-agnostic reference in your Shebang declaration that locates the Node.js runtime automaticaly based on the runtime environment.

Otherwise: Using a hard-coded Node.js runtime location such as #!/usr/local/bin/node is only specific to your own environment and may render the Node.js CLI inoperable in other environments where the location of Node.js is different.

➡️ Details

It may be an easy start to develop a Node.js CLI by running the entry point file as node cli.js, and later on adding #!/usr/local/bin/node to the top of the cli.js file, however the latter is still a flawed approach to the matter as that filesystem location of the node executable is not guaranteed for other users environments.

It should be noted that specifying #!/usr/bin/env node as the best practice, is still making the assumption that the Node.js runtime is referrenced as node and not nodejs or otherwise.



5 Testing

In this section:


5.1 Put no trust in locales

Do: Don't assume output text to be equivalent to a string you assert for because tests may run on systems with different locales than yours, or the English default.

Otherwise: Developers will experience tests failures as they test on systems with different locales than the English default.

➡️ Details

As you choose to test the CLI by running it and parsing output, you may be inclined to grep for specific features to ensure that they exist in the output such as properly providing examples when the CLI is ran with no arguments. e.g:

const output = execSync(cli);
expect(output.indexOf("Examples:")).not.toBe(-1);

When tests will run on locales that aren't English-based, and if your CLI argument parsing library supports auto-detection of locales and adopting to it, then tests such as this will fail, due to language conversions from Examples to the locale-equivalent langauge being set as the default locale in the system.



6 Errors

This section deals with best practices concerned with making a Node.js CLI application available to users who wish to consume it but are lacking an ideal environment than that which the maintainer designed the application.

In this section:


6.1 Informational errors

Do: When reporting errors, provide trackable error codes that can be looked up in the project's documentation and render troubleshooting the error message an easy task.

If possible, extend informatioal error messages to any information being displayed so these can be easily parsed and context is clear.

Otherwise: Generic error messages tend to be ambigious as well as "difficult to google". Parsing and analyzing isn't as straight-forward, and referrencing them in documentation is not as clean either.

➡️ Details

Ensure that when error messages are returned, they include a reference number to specific error codes that can later be consulted with. Just like HTTP status codes so do CLI applications require named or coded errors.

Example:

$ my-cli-tool --doSomething

Error (E4002): please provide an API token via environment variables

6.2 Actionable errors

Do: A failing error message should hint the user as to what is required fixing rather than complaining on the error gap.

Otherwise: Users facing error messages with no hint of action would not be able to successfully drive to an end-to-end successful execution of the CLI application.

➡️ Details

Example:

$ my-cli-tool --doSomething

Error (E4002): please provide an API token via environment variables

6.3 Provide debug mode

Do: Allow power users to tap into further detailed information if they need to diagnose problems.

Otherwise: Don't skip debugging capabilities as it will be harder to collect feedback from users and for them to pinpoint cause of errors.

➡️ Details

Utilize environment variables as well as command line arguments to set debug and turn on extended verbosity levels. Where it make sense in your code, plant debug messages that aid the user and the maintainer to understand the program flow, inputs and outputs and other pieces of information that make problem solving easier.

📦 Recommended packages

Reference to open source packages:




Author

Node.js CLI Apps Best Practices © Liran Tal, Released under CC BY-SA 4.0 License.

License

License

This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.