
Security News
Potemkin Understanding in LLMs: New Study Reveals Flaws in AI Benchmarks
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Command line interface for Jora (a JSON query language)
npm i -g jora-cli
> jora -h
Usage:
jora [query] [options]
Options:
--no-color Suppress color output
--dry-run Don't output result, only report what it would have done
-e, --encoding <encoding> Output encoding: json (default), jsonxl (snapshot9)
-f, --force Force overwriting output file
-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
--verbose Output debug info about actions
-v, --version Output version
Then you can do this wonderful requests in terminal
# get a single field, e.g. version
jora version <package.json
# get all top level dependencies count
jora -i package.json -q '(dependencies.keys() + devDependencies.keys()).size()'
# find packages with more than a single version (run query from a file)
npm ls --json | jora find-multi-version-packages.jora
The content of
find-multi-version-packages.jora
may be as follows:
..(dependencies.entries().({ name: key, ...value })) .group(=>name, =>version) .({ name: key, versions: value }) .[versions.size() > 1]
jora-cli
takes a valid JSON and produce a valid JSON as a result. However, jora
language could produce some values that incompatable with JSON, such values are transforming:
NaN
, Infinity
and -Infinity
are converting to null
, that's a behaviour of JSON.stringify()
undefined
null
when a result of query (top level) or an element of an arrayundefined
as a value are eliminatingMIT
2.0.1 (February 6, 2025)
FAQs
Command line interface for Jora
The npm package jora-cli receives a total of 4 weekly downloads. As such, jora-cli popularity was classified as not popular.
We found that jora-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.