Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jora-cli

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jora-cli

Command line interface for Jora

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-90%
Maintainers
1
Weekly downloads
 
Created
Source

Jora CLI

NPM version Build Status Coverage Status

Command line interface for Jora

Install

npm i -g jora

Usage

> jora -h
Usage:

  csso [query] [options]

Options:

  -h, --help               Output usage information
  -i, --input <filename>   Input file
  -o, --output <filename>  Output file (outputs to stdout if not set)
  -p, --pretty [indent]    Pretty print with optionally specified indentation(4
                           spaces by default)
  -q, --query <query>      Jora query
  -v, --version            Output version

Examples

Then you can do this wonderful requests in terminal

# get a single field, e.g. version
jora version <package.json

# get all dependencies as array
jora -i package.json -q '.dependencies.keys() + .devDependencies.keys()'

# find dublicated packages
npm ls --json | node jora "
    ..(dependencies.mapToArray())
        .group(<key>, <version>)
        .({ name: key, versions: value })
        .[versions.size() > 1]
";

License

MIT

FAQs

Package last updated on 04 Jul 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc