CLI

The Cli interface is common to Deno and Node.js.

@runtime <name> [Options]

@runtime: How to call it depends on the runtime. See Deno or Node.js sections.

name: Check module is registerable or not. required

Options:
All options are optional

flagdesctypedefaultchoice
-r, --registryQuery to registryarray[deno.land, nest.land, npm]deno.land, nest.land, npm
-j, --jsonDisplay to JSON formatbooleanfalse
--verboseVerbose modebooleantrue
-h, --helpShow helpboolean
-v, --versionShow version number

Deno

@runtime: deno run --allow-net https://deno.land/x/registerable/cli.ts

Configuration

Required permissions:

  • --allow-net

Local

You can use it directly from the CLI by using deno run:

deno run --allow-net https://deno.land/x/registerable/cli.ts <name> [Options]

Global

You can also install it globally using the following:

deno install --allow-net -n registerable https://deno.land/x/registerable/cli.ts

Then, the package is available to run:

registerable <name> [Options]

Node.js

Local

You can install locally.

yarn add -D registerable
or
npm i -D registerable

then,

yarn registerable <name> [Options]
or
npm run registerable <name> [Options]

Global

You can also install it globally using the following:

yarn global add registerable

registerable <name> [Options]
Deploys by

Copyright © 2021 Registerable Contributers. All rights reserved.