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.1
to
1.0.2
+1
-1
package.json

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

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

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

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

const { port, shared, args } = typedMessage;
const importPromise = import(workerPath);
const importPromise = import(require('url').pathToFileURL(workerPath));

@@ -18,0 +18,0 @@ try {