How to use the multileveldown.server function in multileveldown

To help you get started, we’ve selected a few multileveldown examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github maxogden / dat-core / lib / multiprocess.js View on Github external
encode.updates({mainLayer: that.mainLayer, changes: that.changes})

          decode.adds(function (req, cb) {
            log.add(req.links, req.value, req.options, function (err, result) {
              encode.adds({
                id: req.id,
                error: err && err.message,
                notFound: err && err.notFound,
                value: result
              })
            })
            cb()
          })

          if (sock.unref) sock.unref()
          multileveldown.server(db, {encode: encode, decode: decode})
          pump(sock, stream, sock)
        })
github ipfs-shipyard / ipfs-npm-registry-mirror / packages / common / utils / fs-repo.js View on Github external
var server = net.createServer((sock) => {
        sock.on('error', () => {
          sock.destroy()
        })

        sock.pipe(multileveldown.server(db)).pipe(sock)
      })
github Level / party / index.js View on Github external
var server = net.createServer(function (sock) {
            if (sock.unref) sock.unref()
            sockets.push(sock)
            pump(sock, multileveldown.server(db), sock, function () {
              sockets.splice(sockets.indexOf(sock), 1)
            })
          })

multileveldown

multilevel implemented using leveldowns with reconnect support

MIT
Latest version published 3 years ago

Package Health Score

54 / 100
Full package analysis

Popular multileveldown functions

Similar packages