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

node-syncify

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

node-syncify - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+1
-1
package.json

@@ -6,3 +6,3 @@ {

"name": "node-syncify",
"version": "1.0.0",
"version": "1.0.1",
"description": "Convert async methods in worker to sync",

@@ -9,0 +9,0 @@ "main": "index.js",

@@ -8,3 +8,2 @@ const { workerData, parentPort } = require('worker_threads');

const workerPath = /** @type {string} */ (workerData);
const importPromise = import(workerPath);

@@ -17,2 +16,3 @@ parentPort.on('message', (message) => {

const { port, shared, args } = typedMessage;
const importPromise = import(workerPath);

@@ -19,0 +19,0 @@ try {