Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

snappy

Package Overview
Dependencies
Maintainers
2
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

snappy - npm Package Compare versions

Comparing version 6.3.5 to 7.0.0

index.d.ts

25

CHANGELOG.md

@@ -1,10 +0,21 @@

# Changelog
# [7.0.0](https://github.com/Brooooooklyn/snappy/compare/v1.0.2...v7.0.0) (2021-08-04)
## v6
- Drop support for 0.10 & 0.12
- update snappy version
Change package name to `snappy` [#16](https://github.com/Brooooooklyn/snappy/issues/16) .
## v5
## [1.0.2](https://github.com/Brooooooklyn/snappy/compare/v1.0.1...v1.0.2) (2021-07-22)
- Drop support for iojs & node 0.8
- bugfixes
### Bug Fixes
- linux aarch64 musl build ([1a9a475](https://github.com/Brooooooklyn/snappy/commit/1a9a475c2aef170abfd9e1e4d8eeb4d955384fa0))
## [1.0.1](https://github.com/Brooooooklyn/snappy/compare/v1.0.0...v1.0.1) (2021-06-10)
### Performance Improvements
- mimalloc as global allocator ([3fbab59](https://github.com/Brooooooklyn/snappy/commit/3fbab59ba2c095bb1b2a819eb3445ca06fc743c4))
# [1.0.0](https://github.com/Brooooooklyn/snappy/compare/df2ccd289ca2418504aff3a8fd65cc75c34ce6d8...v1.0.0) (2021-06-10)
### Features
- implement compress and uncompress ([df2ccd2](https://github.com/Brooooooklyn/snappy/commit/df2ccd289ca2418504aff3a8fd65cc75c34ce6d8))
{
"author": "David Björklund <david.bjorklund@gmail.com>",
"name": "snappy",
"description": "Nodejs bindings to Google's Snappy compression library",
"version": "6.3.5",
"homepage": "https://github.com/kesla/node-snappy",
"repository": {
"type": "git",
"url": "git://github.com/kesla/node-snappy.git"
"version": "7.0.0",
"description": "Fastest Snappy compression library in Node.js",
"main": "index.js",
"repository": "https://github.com/Brooooooklyn/snappy",
"license": "MIT",
"keywords": [
"snappy",
"snap",
"compression",
"compress",
"napi-rs",
"NAPI",
"N-API",
"Rust",
"Node-API",
"node-addon",
"node-addon-api"
],
"files": [
"index.d.ts",
"index.js"
],
"napi": {
"name": "snappy",
"triples": {
"defaults": true,
"additional": [
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"i686-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"aarch64-apple-darwin",
"aarch64-linux-android",
"x86_64-unknown-freebsd",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc"
]
}
},
"main": "snappy.js",
"engines": {
"node": ">= 10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"pretest": "node-gyp rebuild",
"test": "nyc ava test.js && semistandard | snazzy && prebuild-ci",
"install": "prebuild-install || node-gyp rebuild",
"rebuild": "prebuild --compile",
"prebuild": "prebuild --all --strip --verbose",
"prepublishOnly": "tsc"
"artifacts": "napi artifacts",
"bench": "node -r @swc-node/register benchmark/bench.ts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"format": "run-p format:md format:json format:yaml format:source format:rs",
"format:md": "prettier --parser markdown --write \"./**/*.md\"",
"format:json": "prettier --parser json --write \"./**/*.json\"",
"format:rs": "cargo fmt",
"format:source": "prettier --config ./package.json --write \"./**/*.{js,ts}\"",
"format:yaml": "prettier --parser yaml --write \"./**/*.{yml,yaml}\"",
"lint": "eslint -c ./.eslintrc.yml .",
"prepublishOnly": "napi prepublish -t npm && node ./rename-optional-deps.js",
"test": "ava",
"version": "napi version && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"devDependencies": {
"@napi-rs/cli": "^1.1.0",
"@swc-node/register": "^1.3.3",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"ava": "^3.15.0",
"benny": "^3.6.15",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-sonarjs": "^0.9.1",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"dependencies": {
"bindings": "^1.3.1",
"nan": "^2.14.1",
"prebuild-install": "5.3.0"
"@node-rs/helper": "^1.2.1"
},
"devDependencies": {
"@types/node": "^13.13.1",
"ava": "^0.25.0",
"bluebird": "^3.5.3",
"nyc": "^11.9.0",
"prebuild": "^8.2.1",
"prebuild-ci": "^2.3.0",
"semistandard": "^11.0.0",
"snazzy": "^7.1.1"
"lint-staged": {
"*.@(js|ts|tsx)": [
"prettier --write",
"eslint -c .eslintrc.yml --fix"
],
"*.@(yml|yaml)": [
"prettier --parser yaml --write"
],
"*.md": [
"prettier --parser markdown --write"
],
"*.json": [
"prettier --parser json --write"
]
},
"gypfile": true,
"bugs": {
"url": "https://github.com/kesla/node-snappy/issues"
"ava": {
"require": [
"@swc-node/register"
],
"extensions": [
"ts"
],
"environmentVariables": {
"TS_NODE_PROJECT": "./tsconfig.json"
}
},
"license": "MIT"
}
"prettier": {
"printWidth": 120,
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always",
"parser": "typescript"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Brooooooklyn"
},
"optionalDependencies": {
"@napi-rs/snappy-win32-x64-msvc": "^7.0.0",
"@napi-rs/snappy-darwin-x64": "^7.0.0",
"@napi-rs/snappy-linux-x64-gnu": "^7.0.0",
"@napi-rs/snappy-linux-x64-musl": "^7.0.0",
"@napi-rs/snappy-linux-arm64-gnu": "^7.0.0",
"@napi-rs/snappy-win32-ia32-msvc": "^7.0.0",
"@napi-rs/snappy-linux-arm-gnueabihf": "^7.0.0",
"@napi-rs/snappy-darwin-arm64": "^7.0.0",
"@napi-rs/snappy-android-arm64": "^7.0.0",
"@napi-rs/snappy-freebsd-x64": "^7.0.0",
"@napi-rs/snappy-linux-arm64-musl": "^7.0.0",
"@napi-rs/snappy-win32-arm64-msvc": "^7.0.0"
}
}

Sorry, the diff of this file is not supported yet

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