Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
> 💻 A type-driven command line argument parser, with awesome error reporting 🤤
cmd-ts is a TypeScript library for building command-line applications. It provides a simple and type-safe way to define commands, arguments, and options, making it easier to create robust CLI tools.
Defining a Command
This feature allows you to define a command with arguments. In this example, a 'hello' command is created that takes a 'name' argument and prints a greeting message.
const { command, run, string } = require('cmd-ts');
const hello = command({
name: 'hello',
args: {
name: string({
description: 'Name to greet'
})
},
handler: ({ name }) => {
console.log(`Hello, ${name}!`);
}
});
run(hello, process.argv.slice(2));
Handling Options
This feature allows you to handle options in your command. In this example, an 'excited' option is added to the 'greet' command, which appends an exclamation mark to the greeting if specified.
const { command, run, string, option } = require('cmd-ts');
const greet = command({
name: 'greet',
args: {
name: string({
description: 'Name to greet'
}),
excited: option({
type: Boolean,
long: 'excited',
description: 'Add an exclamation mark'
})
},
handler: ({ name, excited }) => {
const greeting = `Hello, ${name}${excited ? '!' : ''}`;
console.log(greeting);
}
});
run(greet, process.argv.slice(2));
Subcommands
This feature allows you to define subcommands within a main command. In this example, 'hello' and 'goodbye' are subcommands of the 'app' command.
const { command, run, subcommands, string } = require('cmd-ts');
const hello = command({
name: 'hello',
args: {
name: string({
description: 'Name to greet'
})
},
handler: ({ name }) => {
console.log(`Hello, ${name}!`);
}
});
const goodbye = command({
name: 'goodbye',
args: {
name: string({
description: 'Name to bid farewell'
})
},
handler: ({ name }) => {
console.log(`Goodbye, ${name}!`);
}
});
const app = subcommands({
name: 'app',
cmds: { hello, goodbye }
});
run(app, process.argv.slice(2));
Commander is a popular library for building command-line interfaces in Node.js. It provides a flexible and easy-to-use API for defining commands, arguments, and options. Compared to cmd-ts, Commander is more widely used and has a larger community, but it is not type-safe out of the box.
Yargs is another widely-used library for building CLI applications. It offers a rich set of features for parsing arguments and options, and it supports command chaining and middleware. Yargs is more feature-rich than cmd-ts but does not provide the same level of type safety.
Oclif is a framework for building command-line tools, developed by Heroku. It provides a robust structure for creating complex CLI applications with plugins and generators. Oclif is more suited for large-scale CLI applications compared to cmd-ts, which is simpler and more lightweight.
cmd-ts
💻 A type-driven command line argument parser, with awesome error reporting 🤤
Not all command line arguments are strings, but for some reason, our CLI parsers force us to use strings everywhere. 🤔 cmd-ts
is a fully-fledged command line argument parser, influenced by Rust's clap
and structopt
:
🤩 Awesome autocomplete, awesome safeness
🎭 Decode your own custom types from strings with logic and context-aware error handling
🌲 Nested subcommands, composable API
import { command, run, string, number, positional, option } from 'cmd-ts';
const cmd = command({
name: 'my-command',
description: 'print something to the screen',
version: '1.0.0',
args: {
number: positional({ type: number, displayName: 'num' }),
message: option({
long: 'greeting',
type: string,
}),
},
handler: args => {
args.message; // string
args.number; // number
console.log(args);
},
});
run(cmd, process.argv.slice(2));
command(arguments)
Creates a CLI command. Returns either a parsing error, or an object where every argument provided gets the value with the correct type, along with a special _
key that contains the "rest" of the positional arguments.
Not all command line arguments are strings. You sometimes want integers, UUIDs, file paths, directories, globs...
Note: this section describes the
ReadStream
type, implemented in./src/example/test-types.ts
Let's say we're about to write a cat
clone. We want to accept a file to read into stdout. A simple example would be something like:
// my-app.ts
import { command, run, positional, string } from 'cmd-ts';
const app = command({
/// name: ...,
args: {
file: positional({ type: string, displayName: 'file' }),
},
handler: ({ file }) => {
// read the file to the screen
fs.createReadStream(file).pipe(stdout);
},
});
// parse arguments
run(app, process.argv.slice(2));
That works okay. But we can do better. In which ways?
What if we had a way to get a Stream
out of the parser, instead of a plain string? This is where cmd-ts
gets its power from, custom type decoding:
// ReadStream.ts
import { Type } from 'cmd-ts';
import fs from 'fs';
// Type<string, Stream> reads as "A type from `string` to `Stream`"
const ReadStream: Type<string, Stream> = {
async from(str) {
if (!fs.existsSync(str)) {
// Here is our error handling!
throw new Error('File not found');
}
return fs.createReadStream(str);
},
};
Now we can use (and share) this type and always get a Stream
, instead of carrying the implementation detail around:
// my-app.ts
import { command, run, positional } from 'cmd-ts';
const app = command({
// name: ...,
args: {
stream: positional({ type: ReadStream, displayName: 'file' }),
},
handler: ({ stream }) => stream.pipe(process.stdout),
});
// parse arguments
run(app, process.argv.slice(2));
Encapsulating runtime behaviour and safe type conversions can help us with awesome user experience:
-
, and when it happens, return process.stdin
like many Unix applicationsAnd the best thing about it — everything is encapsulated to an easily tested type definition, which can be easily shared and reused. Take a look at io-ts-types, for instance, which has types like DateFromISOString, NumberFromString and more, which is something we can totally do.
This project was previously called clio-ts
, because it was based on io-ts
. This is no longer the case, because I want to reduce the dependency count and mental overhead. I might have a function to migrate types between the two.
FAQs
> 💻 A type-driven command line argument parser, with awesome error reporting 🤤
The npm package cmd-ts receives a total of 0 weekly downloads. As such, cmd-ts popularity was classified as not popular.
We found that cmd-ts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.