Socket
Socket
Sign inDemoInstall

level-ws

Package Overview
Dependencies
Maintainers
3
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

level-ws - npm Package Compare versions

Comparing version 0.0.0 to 0.0.1

.travis.yml

88

package.json
{
"name" : "level-ws"
, "description" : "A basic WriteStream implementation for LevelUP"
, "version" : "0.0.0"
, "contributors" : [
"Rod Vagg <r@va.gg> (https://github.com/rvagg)"
, "John Chesley <john@chesl.es> (https://github.com/chesles/)"
, "Jake Verbaten <raynos2@gmail.com> (https://github.com/raynos)"
, "Dominic Tarr <dominic.tarr@gmail.com> (https://github.com/dominictarr)"
, "Max Ogden <max@maxogden.com> (https://github.com/maxogden)"
, "Lars-Magnus Skog <lars.magnus.skog@gmail.com> (https://github.com/ralphtheninja)"
, "David Björklund <david.bjorklund@gmail.com> (https://github.com/kesla)"
, "Julian Gruber <julian@juliangruber.com> (https://github.com/juliangruber)"
, "Paolo Fragomeni <paolo@async.ly> (https://github.com/hij1nx)"
, "Anton Whalley <anton.whalley@nearform.com> (https://github.com/No9)"
, "Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)"
, "Pedro Teixeira <pedro.teixeira@gmail.com> (https://github.com/pgte)"
, "James Halliday <mail@substack.net> (https://github.com/substack)"
]
, "repository" : {
"type" : "git"
, "url" : "https://github.com/Level/level-ws.git"
}
, "homepage" : "https://github.com/Level/level-ws"
, "keywords": [
"leveldb"
, "stream"
, "levelup"
]
, "main" : "level-ws.js"
, "dependencies" : {
"readable-stream" : "~1.0.15"
, "xtend" : "~2.1.1"
}
, "devDependencies" : {
"tape" : "*"
, "level" : "*"
, "after" : "*"
, "rimraf" : "*"
}
, "scripts" : {
"test" : "node test.js"
}
, "license" : "MIT"
}
"name": "level-ws",
"description": "A basic WriteStream implementation for LevelUP",
"version": "0.0.1",
"contributors": [
"Rod Vagg <r@va.gg> (https://github.com/rvagg)",
"John Chesley <john@chesl.es> (https://github.com/chesles/)",
"Jake Verbaten <raynos2@gmail.com> (https://github.com/raynos)",
"Dominic Tarr <dominic.tarr@gmail.com> (https://github.com/dominictarr)",
"Max Ogden <max@maxogden.com> (https://github.com/maxogden)",
"Lars-Magnus Skog <ralphtheninja@riseup.net> (https://github.com/ralphtheninja)",
"David Björklund <david.bjorklund@gmail.com> (https://github.com/kesla)",
"Julian Gruber <julian@juliangruber.com> (https://github.com/juliangruber)",
"Paolo Fragomeni <paolo@async.ly> (https://github.com/hij1nx)",
"Anton Whalley <anton.whalley@nearform.com> (https://github.com/No9)",
"Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)",
"Pedro Teixeira <pedro.teixeira@gmail.com> (https://github.com/pgte)",
"James Halliday <mail@substack.net> (https://github.com/substack)"
],
"repository": {
"type": "git",
"url": "https://github.com/Level/level-ws.git"
},
"homepage": "https://github.com/Level/level-ws",
"keywords": [
"leveldb",
"stream",
"levelup"
],
"main": "level-ws.js",
"dependencies": {
"readable-stream": "~2.0.6",
"xtend": "~2.1.1"
},
"devDependencies": {
"tape": "*",
"level": "*",
"after": "*",
"rimraf": "*"
},
"scripts": {
"test": "node test.js"
},
"license": "MIT"
}
level-ws
========
![LevelDB Logo](https://twimg0-a.akamaihd.net/profile_images/3360574989/92fc472928b444980408147e5e5db2fa_bigger.png)
<img alt="LevelDB Logo" height="100" src="http://leveldb.org/img/logo.svg">
**A basic WriteStream implementation for [LevelUP](https://github.com/rvagg/node-levelup)**
[![Build Status](https://secure.travis-ci.org/Level/level-ws.png)](http://travis-ci.org/Level/level-ws)
[![NPM](https://nodei.co/npm/level-ws.png?downloads)](https://nodei.co/npm/level-ws/)

@@ -139,4 +141,4 @@

Copyright (c) 2012-2013 **level-ws** contributors (listed above).
Copyright (c) 2012-2015 **level-ws** contributors (listed above).
**level-ws** is licensed under an MIT +no-false-attribs license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.

@@ -8,3 +8,2 @@ /* Copyright (c) 2012-2013 LevelUP contributors

, tape = require('tape')
, os = require('os')
, path = require('path')

@@ -17,3 +16,3 @@ , fs = require('fs')

function cleanup (callback) {
fs.readdir(os.tmpdir(), function (err, list) {
fs.readdir(__dirname, function (err, list) {
if (err) return callback(err)

@@ -40,3 +39,3 @@

function openTestDatabase (t, options, callback) {
var location = path.join(os.tmpdir(), '_level-ws_test_db.' + Math.random())
var location = path.join(__dirname, '_level-ws_test_db.' + Math.random())
if (typeof options == 'function') {

@@ -43,0 +42,0 @@ callback = options

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