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

bsdiff-node

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bsdiff-node - npm Package Compare versions

Comparing version
2.3.1
to
2.4.0
+4
-4
package.json
{
"name": "bsdiff-node",
"description": "An binary diff and patch library based on bsdiff algorithm for NodeJS (Windows, Mac, Linux).",
"version": "2.3.1",
"version": "2.4.0",
"repository": {

@@ -31,11 +31,11 @@ "type": "git",

"homepage": "https://github.com/Brouilles/bsdiff-node",
"author": "Brouilles <contact@exoway.net>",
"author": "Gaëtan Dezeiraud <hello@dezeiraud.com>",
"license": "MIT",
"gypfile": true,
"dependencies": {
"nan": "^2.14.2"
"nan": "^2.15.0"
},
"devDependencies": {
"mocha": "^8.3.2"
"mocha": "^9.1.3"
}
}

@@ -37,3 +37,2 @@ [![CI](https://github.com/Brouilles/bsdiff-node/actions/workflows/main.yml/badge.svg)](https://github.com/Brouilles/bsdiff-node/actions/workflows/main.yml)

```javascript
const fs = require('fs');
const path = require('path');

@@ -40,0 +39,0 @@

@@ -108,3 +108,3 @@ #include <node.h>

void init(Local<Object> exports, Local<Object> module) {
void init(Local<Object> exports) {
NODE_SET_METHOD(exports, "diff", diff);

@@ -117,3 +117,5 @@ NODE_SET_METHOD(exports, "diffSync", diffSync);

NODE_MODULE(bsdp, init)
NODE_MODULE_INIT() {
init(exports);
}
}
# Security Policy
## Supported Versions
Use this section to tell people about which versions of your project are
currently being supported with security updates.
| Version | Supported |
| ------- | ------------------ |
| 5.1.x | :white_check_mark: |
| 5.0.x | :x: |
| 4.0.x | :white_check_mark: |
| < 4.0 | :x: |
## Reporting a Vulnerability
Use this section to tell people how to report a vulnerability.
Tell them where to go, how often they can expect to get an update on a
reported vulnerability, what to expect if the vulnerability is accepted or
declined, etc.