![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
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.
unified-args
Advanced tools
unified engine to create a command line interface from a unified processor.
--color
--config
--ext <extensions>
--file-path <path>
--frail
--help
--ignore
--ignore-path <path>
--ignore-path-resolve-from cwd|dir
--ignore-pattern <globs>
--inspect
--output [path]
--quiet
--rc-path <path>
--report <reporter>
--setting <settings>
--silent
--silently-ignore
--stdout
--tree
--tree-in
--tree-out
--use <plugin>
--verbose
--version
--watch
This package wraps unified-engine
so that it can be used
to create a command line interface.
It’s what you use underneath when you use remark-cli
.
You can use this to let users process multiple files from the command line, letting them configure from the file system.
This package is ESM only. In Node.js (version 16+), install with npm:
npm install unified-args
The following example creates a CLI for remark, which will search for files
in folders with a markdown extension, allows configuration from
.remarkrc
and package.json
files, ignoring files from
.remarkignore
files, and more.
Say our module example.js
looks as follows:
import {remark} from 'remark'
import {args} from 'unified-args'
args({
description:
'Command line interface to inspect and change markdown files with remark',
extensions: [
'md',
'markdown',
'mdown',
'mkdn',
'mkd',
'mdwn',
'mkdown',
'ron'
],
ignoreName: '.remarkignore',
name: 'remark',
packageField: 'remarkConfig',
pluginPrefix: 'remark',
processor: remark,
rcName: '.remarkrc',
version: '11.0.0'
})
…now running node example.js --help
yields:
Usage: remark [options] [path | glob ...]
Command line interface to inspect and change markdown files with remark
Options:
--[no-]color specify color in report (on by default)
--[no-]config search for configuration files (on by default)
-e --ext <extensions> specify extensions
…
This package exports the identifier args
.
There is no default export.
args(options)
Start the CLI.
👉 Note: this takes over the entire process. It parses
process.argv
, exits when its done, etc.
options
(Options
, required)
— configurationNothing (undefined
).
Options
Configuration (TypeScript type).
description
(string
, required)
— description of executableextensions
(Array<string>
, required)
— default file extensions to include
(engine: options.extensions
)ignoreName
(string
, required)
— name of ignore files to load
(engine: options.ignoreName
)name
(string
, required)
— name of executablepackageField
(string
, required)
— field where configuration can be found in package.json
s
(engine: options.packageField
)pluginPrefix
(string
, required)
— prefix to use when searching for plugins
(engine: options.pluginPrefix
)processor
(Processor
, required)
— processor to use
(engine: options.processor
)rcName
(string
, required)
— name of configuration files to load
(engine: options.rcName
)version
(string
, required)
— version of executableCLIs created with unified-args
, such as the example above, have an
interface similar to the below:
Usage: remark [options] [path | glob ...]
Command line interface to inspect and change markdown files with remark
Options:
--[no-]color specify color in report (on by default)
--[no-]config search for configuration files (on by default)
-e --ext <extensions> specify extensions
--file-path <path> specify path to process as
-f --frail exit with 1 on warnings
-h --help output usage information
--[no-]ignore search for ignore files (on by default)
-i --ignore-path <path> specify ignore file
--ignore-path-resolve-from cwd|dir resolve patterns in `ignore-path` from its directory or cwd
--ignore-pattern <globs> specify ignore patterns
--inspect output formatted syntax tree
-o --output [path] specify output location
-q --quiet output only warnings and errors
-r --rc-path <path> specify configuration file
--report <reporter> specify reporter
-s --setting <settings> specify settings
-S --silent output only errors
--silently-ignore do not fail when given ignored files
--[no-]stdout specify writing to stdout (on by default)
-t --tree specify input and output as syntax tree
--tree-in specify input as syntax tree
--tree-out output syntax tree
-u --use <plugins> use plugins
--verbose report extra info for messages
-v --version output version number
-w --watch watch for changes and reprocess
Examples:
# Process `input.md`
$ remark input.md -o output.md
# Pipe
$ remark < input.md > output.md
# Rewrite all applicable files
$ remark . -o
All non-options passed to the cli are seen as input and can be:
readme.txt
) and globs (*.txt
) pointing to files to loadtest
) and globs (fixtures/{in,out}/
) pointing to folders, which
are searched for files with known extensions which are not ignored
by patterns in ignore files.
The default behavior is to exclude files in node_modules/
unless
explicitly givenYou can force things to be seen as input by using --
:
cli -- globs/* and/files
options.files
--color
cli --no-color input.txt
Whether to output ANSI color codes in the report.
options.color
👉 Note: This option may not work depending on the reporter given in
--report
.
--config
cli --no-config input.txt
Whether to load configuration files.
Searches for files with the configured rcName
: $rcName
and
$rcName.json
(JSON), $rcName.yml
and $rcName.yaml
(YAML), $rcName.js
(JavaScript), $rcName.cjs
(CommonJS), and $rcName.mjs
(ESM); and looks for
the configured packageField
in package.json
files.
options.detectConfig
--ext <extensions>
cli --ext html .
cli --ext htm --ext html .
cli --ext htm,html .
Specify one or more extensions to include when searching for files.
extensions
-e
options.extensions
--file-path <path>
cli --file-path input.txt < input.txt > doc/output.txt
File path to process the given file on stdin(4) as, if any.
options.filePath
--frail
cli --frail input.txt
Exit with a status code of 1
if warnings or errors occur.
The default behavior is to exit with 1
on errors.
-f
options.frail
--help
cli --help
Output short usage information.
-h
--ignore
cli --no-ignore .
Whether to load ignore files.
Searches for files named $ignoreName
.
options.detectIgnore
--ignore-path <path>
cli --ignore-path .gitignore .
File path to an ignore file to load, regardless of
--ignore
.
-i
options.ignorePath
--ignore-path-resolve-from cwd|dir
cli --ignore-path node_modules/my-config/my-ignore --ignore-path-resolve-from cwd .
Resolve patterns in the ignore file from its directory (dir
, default) or the
current working directory (cwd
).
'dir'
options.ignorePathResolveFrom
--ignore-pattern <globs>
cli --ignore-pattern "docs/*.md" .
Additional patterns to use to ignore files.
options.ignorePatterns
--inspect
cli --inspect < input.txt
Output the transformed syntax tree, formatted with
unist-util-inspect
.
This does not run the compilation phase.
options.inspect
--output [path]
cli --output -- .
cli --output doc .
cli --output doc/output.text input.txt
Whether to write successfully processed files, and where to. Can be set from configuration files.
path
is not given, files are overwritten when successfulpath
points to a folder, files are written therepath
👉 Note: intermediate folders are not created.
-o
options.output
--quiet
cli --quiet input.txt
Ignore files without any messages in the report. The default behavior is to show a success message.
-q
options.quiet
👉 Note: this option may not work depending on the reporter given in
--report
.
--rc-path <path>
cli --rc-path config.json .
File path to a configuration file to load, regardless of
--config
.
-r
options.rcPath
--report <reporter>
cli --report ./reporter.js input.txt
cli --report vfile-reporter-json input.txt
cli --report json input.txt
cli --report json=pretty:2 input.txt
cli --report 'json=pretty:"\t"' input.txt
# Only last one is used:
cli --report pretty --report json input.txt
Reporter to load by its name or path, optionally with options, and use to report metadata about every processed file.
To pass options, follow the name by an equals sign (=
) and settings, which
have the same in syntax as --setting <settings>
.
The prefix vfile-reporter-
can be omitted.
Prefixed reporters are preferred over modules without prefix.
If multiple reporters are given, the last one is used.
vfile-reporter
options.reporter
and options.reporterOptions
👉 Note: the
quiet
,silent
, andcolor
options may not work with the used reporter. If they are given, they are preferred over the same properties in reporter settings.
--setting <settings>
cli --setting alpha:true input.txt
cli --setting bravo:true --setting '"charlie": "delta"' input.txt
cli --setting echo-foxtrot:-2 input.txt
cli --setting 'golf: false, hotel-india: ["juliet", 1]' input.txt
Configuration for the parser and compiler of the processor. Can be set from configuration files.
The given settings are JSON5, with one exception: surrounding braces must
not be used. Instead, use JSON syntax without braces, such as
"foo": 1, "bar": "baz"
.
-s
options.settings
--silent
cli --silent input.txt
Show only fatal errors in the report.
Turns --quiet
on.
-S
options.silent
👉 Note: this option may not work depending on the reporter given in
--report
.
--silently-ignore
cli --silently-ignore **/*.md
Skip given files which are ignored by ignore files, instead of warning about them.
options.silentlyIgnore
--stdout
cli --no-stdout input.txt
Whether to write a processed file to stdout(4).
--output
or --watch
are
given, or if multiple files could be processedoptions.out
--tree
cli --tree < input.json > output.json
Treat input as a syntax tree in JSON and output the transformed syntax tree. This runs neither the parsing nor the compilation phase.
-t
options.tree
--tree-in
cli --tree-in < input.json > input.txt
Treat input as a syntax tree in JSON. This does not run the parsing phase.
--tree
options.treeIn
--tree-out
cli --tree-out < input.txt > output.json
Output the transformed syntax tree. This does not run the compilation phase.
--tree
options.treeOut
--use <plugin>
cli --use remark-man input.txt
cli --use man input.txt
cli --use 'toc=max-depth:3' input.txt
cli --use ./plugin.js input.txt
Plugin to load by its name or path, optionally with options, and use on every processed file. Can be set from configuration files.
To pass options, follow the plugin by an equals sign (=
) and settings, which
have the same in syntax as --setting <settings>
.
Plugins prefixed with the configured pluginPrefix
are
preferred over modules without prefix.
-u
options.plugins
--verbose
cli --verbose input.txt
Print more info for messages.
options.verbose
👉 Note: this option may not work depending on the reporter given in
--report
.
--version
cli --version
Output version number.
-v
--watch
cli -qwo .
Yields:
Watching... (press CTRL+C to exit)
Note: Ignoring `--output` until exit.
Process as normal, then watch found files and reprocess when they change.
The watch is stopped when SIGINT
is received (usually done by pressing
CTRL-C
).
If --output
is given without path
, it is not honored, to
prevent an infinite loop.
On operating systems other than Windows, when the watch closes, a final process
runs including --output
.
-w
CLIs created with unified-args exit with:
1
on fatal errors1
on warnings in --frail
mode, 0
on warnings otherwise0
on successCLIs can be debugged by setting the DEBUG
environment variable to
*
, such as DEBUG="*" cli example.txt
.
This package is fully typed with TypeScript.
It export the additional type Options
.
Projects maintained by the unified collective are compatible with maintained versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line, unified-engine@^11
,
compatible with Node.js 16.
unified-args
loads and evaluates configuration files, plugins, and presets
from the file system (often from node_modules/
).
That means code that is on your file system runs.
Make sure you trust the workspace where you run unified-args
and be careful
with packages from npm and changes made by contributors.
See contributing.md
in unifiedjs/.github
for ways
to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
FAQs
create CLIs for unified processors
The npm package unified-args receives a total of 22,187 weekly downloads. As such, unified-args popularity was classified as popular.
We found that unified-args demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.