
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
raven-shell
Advanced tools
Command line shell for RavenDB (inspired by the MongoDB shell)
The RavenDB studio is a Silverlight based web application. Unfortunately, it crashes on every virtual machine I have tried (Virtual Box, VM Ware Fusion). I also tend to use a Mac most of the time, so it would be nice to be able to access RavenDB via a Mac that does not have Silverlight. It would also be nice to be able to use a command-line interface to do work with RavenDB.
Luckily, RavenDB has an excellent HTTP API, so this console application was written against that API, using the strong networking abilities of Node.js and its REPL (Read-Eval-Print-Loop). Node.js is also natively JavaScript, so working with JSON documents in RavenDB seems a natrual fit.
$ npm install raven-shell -g
...
$ raven
RavenDB shell
> .store
Using datastore at: http://localhost:8080
> .store http://someravendb.myorg.com:8080
Using datastore at: http://someravendb.myorg.com:8080
> .count Albums
246
> .docs Users
[ { firstName: 'Johnny',
'@metadata':
{ 'Raven-Entity-Name': 'Users',
'@id': '1e0c2a96-2d3e-4fb9-89be-b138e8404e95',
'Temp-Index-Score': 4.951243877410889,
'Last-Modified': '2012-05-12T17:56:41.8740000',
'@etag': '00000000-0000-0800-0000-000000000008',
'Non-Authoritative-Information': false } },
{ id: 'users/frank',
firstName: 'Frank',
lastName: 'Jenkins',
'@metadata':
{ 'Raven-Entity-Name': 'Users',
'@id': 'users/frank',
'Temp-Index-Score': 4.951243877410889,
'Last-Modified': '2012-05-12T21:06:41.5600000',
'@etag': '00000000-0000-0800-0000-00000000000a',
'Non-Authoritative-Information': false } },
{ id: 'users/leeroy',
firstName: 'Leeroy',
'@metadata':
{ 'Raven-Entity-Name': 'Users',
'@id': 'users/leeroy',
'Temp-Index-Score': 4.951243877410889,
'Last-Modified': '2012-05-12T22:44:54.7630000',
'@etag': '00000000-0000-0800-0000-00000000000c',
'Non-Authoritative-Information': false } } ]
> .count Users
3
> .create Users { id: 'users/mamma', firstName: 'Mamma', lastName: 'Jenkins'}
{ Key: 'users/mamma',
ETag: '00000000-0000-0900-0000-000000000002' }
>_.Key
'users/mamma'
> .find {firstName: 'Leeroy'}
[ { id: 'users/leeroy',
firstName: 'Leeroy',
'@metadata':
{ 'Raven-Entity-Name': 'Users',
'@id': 'users/leeroy',
'Temp-Index-Score': 4.951243877410889,
'Last-Modified': '2012-05-12T22:44:54.7630000',
'@etag': '00000000-0000-0800-0000-00000000000c',
'Non-Authoritative-Information': false } } ]
> var leeroy = _[0]
undefined
> leeroy
{ id: 'users/leeroy',
firstName: 'Leeroy',
'@metadata':
{ 'Raven-Entity-Name': 'Users',
'@id': 'users/leeroy',
'Temp-Index-Score': 4.951243877410889,
'Last-Modified': '2012-05-12T22:44:54.7630000',
'@etag': '00000000-0000-0800-0000-00000000000c',
'Non-Authoritative-Information': false } }
> .read users/mamma
{ id: 'users/mamma',
firstName: 'Mamma',
lastName: 'Jenkins' }
> .delete users/mamma
> .read users/mamma
[Error: Error: 404 - ]
> .exit
$
FAQs
A command-line interface to RavenDB
We found that raven-shell demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.