This is a framework for building CLIs in Node.js. This framework was built out of the Heroku CLI but generalized to build any custom CLI. It's designed both for single-file CLIs with a few flag options, or for very complex CLIs that have subcommands (like git or heroku).
See the docs for more information.
The Getting Started tutorial is a step-by-step guide to introduce you to oclif. If you have not developed anything in a command line before, this tutorial is a great place to get started.
--help
to the CLI to get help such as flag options and argument information. This information is also automatically placed in the README whenever the npm package of the CLI is published. See the multi-command CLI examplets-node
to run the plugins enabling you to use TypeScript with minimal-to-no boilerplate needed for any oclif CLI.$ heroku info --app=<tab><tab> # will complete with all the Heroku apps a user has in their account
Currently, Node 8+ is supported. We support the LTS versions of Node. You can add the node package to your CLI to ensure users are running a specific version of Node.
With oclif you can create 2 different CLI types, single and multi.
Single CLIs are like ls
or cat
. They can accept arguments and flags. Single CLIs can optionally be a single file.
Multi CLIs are like git
or heroku
. They have subcommands that are themselves single CLIs. In the package.json
there is a field oclif.commands
that points to a directory. This directory contains all the subcommands for the CLI. For example, if you had a CLI called mycli
with the commands mycli create
and mycli destroy
, you would have a project like the following:
package.json
src/
└── commands/
├── create.ts
└── destroy.ts
Multi-command CLIs may also include plugins.
Creating a single-command CLI:
$ npx oclif single mynewcli
? npm package name (mynewcli): mynewcli
$ cd mynewcli
$ ./bin/run
hello world from ./src/index.js!
Creating a multi-command CLI:
$ npx oclif multi mynewcli
? npm package name (mynewcli): mynewcli
$ cd mynewcli
$ ./bin/run --version
mynewcli/0.0.0 darwin-x64 node-v9.5.0
$ ./bin/run --help
USAGE
$ mynewcli [COMMAND]
COMMANDS
hello
help display help for mynewcli
$ ./bin/run hello
hello world from ./src/hello.js!
oclif generate NAME
oclif help [COMMAND]
oclif manifest [PATH]
oclif pack:deb
oclif pack:macos
oclif pack:tarballs
oclif pack:win
oclif promote
oclif readme
oclif upload:deb
oclif upload:macos
oclif upload:tarballs
oclif upload:win
oclif generate NAME
generate a new CLI
USAGE
$ oclif generate [NAME]
ARGUMENTS
NAME directory name of new project
DESCRIPTION
generate a new CLI
This will clone the template repo 'oclif/hello-world' and update package properties
See code: src/commands/generate.ts
oclif help [COMMAND]
display help for oclif
USAGE
$ oclif help [COMMAND] [--all]
ARGUMENTS
COMMAND command to show help for
FLAGS
--all see all commands in CLI
DESCRIPTION
display help for oclif
See code: @oclif/plugin-help
oclif manifest [PATH]
generates plugin manifest json
USAGE
$ oclif manifest [PATH]
ARGUMENTS
PATH [default: .] path to plugin
DESCRIPTION
generates plugin manifest json
See code: src/commands/manifest.ts
oclif pack:deb
pack CLI into debian package
USAGE
$ oclif pack:deb -r <value>
FLAGS
-r, --root=<value> (required) [default: .] path to oclif CLI root
DESCRIPTION
pack CLI into debian package
See code: src/commands/pack/deb.ts
oclif pack:macos
pack CLI into macOS .pkg
USAGE
$ oclif pack:macos -r <value>
FLAGS
-r, --root=<value> (required) [default: .] path to oclif CLI root
DESCRIPTION
pack CLI into macOS .pkg
See code: src/commands/pack/macos.ts
oclif pack:tarballs
packages oclif CLI into tarballs
USAGE
$ oclif pack:tarballs -r <value> [-t <value>] [--xz]
FLAGS
-r, --root=<value> (required) [default: .] path to oclif CLI root
-t, --targets=<value> [default: linux-x64,linux-arm,win32-x64,win32-x86,darwin-x64] comma-separated targets to pack
(e.g.: linux-arm,win32-x64)
--[no-]xz also build xz
DESCRIPTION
packages oclif CLI into tarballs
This can be used to create oclif CLIs that use the system node or that come preloaded with a node binary.
See code: src/commands/pack/tarballs.ts
oclif pack:win
create windows installer from oclif CLI
USAGE
$ oclif pack:win -r <value>
FLAGS
-r, --root=<value> (required) [default: .] path to oclif CLI root
DESCRIPTION
create windows installer from oclif CLI
This command requires WINDOWS_SIGNING (prefixed with the name of your executable, e.g. OCLIF_WINDOWS_SIGNING_PASS) to
be set in the environment
See code: src/commands/pack/win.ts
oclif promote
promote CLI builds to a S3 release channel
USAGE
$ oclif promote -r <value> --version <value> --sha <value> --channel <value> [-t <value>] [-d] [-m] [-w]
[-a <value>] [--xz] [--indexes]
FLAGS
-a, --max-age=<value> [default: 86400] cache control max-age in seconds
-d, --deb promote debian artifacts
-m, --macos promote macOS pkg
-r, --root=<value> (required) [default: .] path to the oclif CLI project root
-t, --targets=<value> [default: linux-x64,linux-arm,win32-x64,win32-x86,darwin-x64] comma-separated targets to
promote (e.g.: linux-arm,win32-x64)
-w, --win promote Windows exe
--channel=<value> (required) [default: stable] which channel to promote to
--indexes append the promoted urls into the index files
--sha=<value> (required) 7-digit short git commit SHA of the CLI to promote
--version=<value> (required) semantic version of the CLI to promote
--[no-]xz also upload xz
DESCRIPTION
promote CLI builds to a S3 release channel
See code: src/commands/promote.ts
oclif readme
adds commands to README.md in current directory
USAGE
$ oclif readme --dir <value> [--multi]
FLAGS
--dir=<value> (required) [default: docs] output directory for multi docs
--multi create a different markdown page for each topic
DESCRIPTION
adds commands to README.md in current directory
The readme must have any of the following tags inside of it for it to be replaced or else it will do nothing:
# Usage
<!-- usage -->
# Commands
<!-- commands -->
Customize the code URL prefix by setting oclif.repositoryPrefix in package.json.
See code: src/commands/readme.ts
oclif upload:deb
upload deb package built with pack:deb
USAGE
$ oclif upload:deb -r <value>
FLAGS
-r, --root=<value> (required) [default: .] path to oclif CLI root
DESCRIPTION
upload deb package built with pack:deb
See code: src/commands/upload/deb.ts
oclif upload:macos
upload macos installers built with pack:macos
USAGE
$ oclif upload:macos -r <value>
FLAGS
-r, --root=<value> (required) [default: .] path to oclif CLI root
DESCRIPTION
upload macos installers built with pack:macos
See code: src/commands/upload/macos.ts
oclif upload:tarballs
upload an oclif CLI to S3
USAGE
$ oclif upload:tarballs -r <value> [-t <value>] [--xz]
FLAGS
-r, --root=<value> (required) [default: .] path to oclif CLI root
-t, --targets=<value> [default: linux-x64,linux-arm,win32-x64,win32-x86,darwin-x64] comma-separated targets to upload
(e.g.: linux-arm,win32-x64)
--[no-]xz also upload xz
DESCRIPTION
upload an oclif CLI to S3
"aws-sdk" will need to be installed as a devDependency to upload.
See code: src/commands/upload/tarballs.ts
oclif upload:win
upload windows installers built with pack:win
USAGE
$ oclif upload:win -r <value>
FLAGS
-r, --root=<value> (required) [default: .] path to oclif CLI root
DESCRIPTION
upload windows installers built with pack:win
See code: src/commands/upload/win.ts
If you have any suggestions or want to let us know what you think of oclif, send us a message at heroku-cli@salesforce.com