New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

goatdb

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

goatdb

log structured merge tree in pure js, for goatscale

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
4
-20%
Maintainers
1
Weekly downloads
 
Created
Source

GoatDb

a log-structured-merge-tree, implemented in pure node.js. GOATSCALE!!!

img

Another goatscale db locket

var GoatDB = require('goatdb')

GoatDB('/tmp/goatdb-example').open(function (err, db) {
  db.put('hello', 'I am a goat', function (err) {
    db.put('whatevs', 'GOAT GOAT GOAT', function (err) {
      db.get('hello', function (err, value) {
        console.log(value)
      })
    })
  })
})

everything is just line separated json!

cat /tmp/goatdb-example/log-00000001.json

contains this.

{"key":"hello","value":"I am a goat","type":"put"}
{"key":"whatevs","value":"GOAT GOAT GOAT","type":"put"}

put more data in there and you'll get sst files too.

features

  • GOATS
  • crude pass at the leveldown api.
  • probably lots of bugs.

TODO

  • add more goats
  • be leveldown compatible
  • contrive benchmarks that goatdb will do really well at.

FAQs

Package last updated on 21 Apr 2014

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