npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ketool

v0.1.1

Published

Development tools for Kompira Enterprise

Downloads

139

Readme

ketool

Development tools for Kompira Enterprise

oclif Version Downloads/week

Usage

$ npm install -g ketool
$ ketool COMMAND
running command...
$ ketool (--version)
ketool/0.1.1 linux-x64 node-v20.18.0
$ ketool --help [COMMAND]
USAGE
  $ ketool COMMAND
...

Commands

ketool help [COMMAND]

Display help for ketool.

USAGE
  $ ketool help [COMMAND...] [-n]

ARGUMENTS
  COMMAND...  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for ketool.

See code: @oclif/plugin-help

ketool ls [OBJECT]

list information about the OBJECTs.

USAGE
  $ ketool ls [OBJECT...] [-u <value>] [-k] [-t <value>] [-c <value>] [-l]

ARGUMENTS
  OBJECT...  file to read

FLAGS
  -c, --cwd=<value>      set current working directory to VALUE
  -k, --insecure         allow insecure SSL connection
  -l, --long             use a long listing format
  -t, --token=<value>    API access token of the Kompira Enterprise server
  -u, --baseurl=<value>  base URL of the Kompira Enterprise server

DESCRIPTION
  list information about the OBJECTs.

EXAMPLES
  $ ketool ls

See code: src/commands/ls.ts

ketool mkdir DIRECTORY

Create the directories, if they do not already exist.

USAGE
  $ ketool mkdir DIRECTORY... [-u <value>] [-k] [-t <value>] [-c <value>] [-p] [-v]

ARGUMENTS
  DIRECTORY...  path of the directory to be created

FLAGS
  -c, --cwd=<value>      set current working directory to VALUE
  -k, --insecure         allow insecure SSL connection
  -p, --parent           no error if existing, make parent directories as needed
  -t, --token=<value>    API access token of the Kompira Enterprise server
  -u, --baseurl=<value>  base URL of the Kompira Enterprise server
  -v, --verbose          print a message for each created directory

DESCRIPTION
  Create the directories, if they do not already exist.

EXAMPLES
  $ ketool mkdir

See code: src/commands/mkdir.ts

ketool put SOURCE

put files or directories to Kompira server

USAGE
  $ ketool put SOURCE... [-u <value>] [-k] [-t <value>] [-c <value>] [-d <value>] [-o] [-r] [-v]

ARGUMENTS
  SOURCE...  source file or directory

FLAGS
  -c, --cwd=<value>      set current working directory to VALUE
  -d, --dest=<value>     specify destination object or directory (create if none exists)
  -k, --insecure         allow insecure SSL connection
  -o, --overwrite        overwrite an existing object
  -r, --recursive        put directories recursively
  -t, --token=<value>    API access token of the Kompira Enterprise server
  -u, --baseurl=<value>  base URL of the Kompira Enterprise server
  -v, --verbose          explain what is being down

DESCRIPTION
  put files or directories to Kompira server

EXAMPLES
  $ ketool put

See code: src/commands/put.ts

ketool rm OBJECT

Remove the directories, if they are empty.

USAGE
  $ ketool rm OBJECT... [-u <value>] [-k] [-t <value>] [-c <value>] [-f] [-r] [-v]

ARGUMENTS
  OBJECT...  path of the object to be removed

FLAGS
  -c, --cwd=<value>      set current working directory to VALUE
  -f, --force            ignore nonexistent objects and arguments
  -k, --insecure         allow insecure SSL connection
  -r, --recurcive        remove directories and their contents recursively
  -t, --token=<value>    API access token of the Kompira Enterprise server
  -u, --baseurl=<value>  base URL of the Kompira Enterprise server
  -v, --verbose          print a message for each removed directory

DESCRIPTION
  Remove the directories, if they are empty.

EXAMPLES
  $ ketool rm

See code: src/commands/rm.ts

ketool rmdir DIRECTORY

Remove the directories, if they are empty.

USAGE
  $ ketool rmdir DIRECTORY... [-u <value>] [-k] [-t <value>] [-c <value>] [-p] [-v]

ARGUMENTS
  DIRECTORY...  path of the directory to be removed

FLAGS
  -c, --cwd=<value>      set current working directory to VALUE
  -k, --insecure         allow insecure SSL connection
  -p, --parent           remove DIRECTORY and its ancestors
  -t, --token=<value>    API access token of the Kompira Enterprise server
  -u, --baseurl=<value>  base URL of the Kompira Enterprise server
  -v, --verbose          print a message for each removed directory

DESCRIPTION
  Remove the directories, if they are empty.

EXAMPLES
  $ ketool rmdir

See code: src/commands/rmdir.ts