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

@types/node

Package Overview
Dependencies
Maintainers
1
Versions
2315
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/node - npm Package Compare versions

Comparing version
20.17.43
to
20.17.44
+2
-2
node v20.17/package.json
{
"name": "@types/node",
"version": "20.17.43",
"version": "20.17.44",
"description": "TypeScript definitions for node",

@@ -218,4 +218,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",

"peerDependencies": {},
"typesPublisherContentHash": "cf385e130c412eee6db8c92a5f7f76dd6df4051f21bf1ccc629cfac8880dce07",
"typesPublisherContentHash": "900a8c271fd24b350144089d8e9cf45e24621097252d1f952b88dd2aef4c17aa",
"typeScriptVersion": "5.1"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Tue, 06 May 2025 18:02:39 GMT
* Last updated: Wed, 07 May 2025 15:38:50 GMT
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)

@@ -14,0 +14,0 @@

@@ -72,3 +72,3 @@ /**

importModuleDynamically?:
| ((specifier: string, script: Script, importAttributes: ImportAttributes) => Module)
| ((specifier: string, script: Script, importAttributes: ImportAttributes) => Module | Promise<Module>)
| typeof constants.USE_MAIN_CONTEXT_DEFAULT_LOADER

@@ -819,3 +819,9 @@ | undefined;

initializeImportMeta?: ((meta: ImportMeta, module: SourceTextModule) => void) | undefined;
importModuleDynamically?: ScriptOptions["importModuleDynamically"] | undefined;
importModuleDynamically?:
| ((
specifier: string,
referrer: SourceTextModule,
importAttributes: ImportAttributes,
) => Module | Promise<Module>)
| undefined;
}

@@ -822,0 +828,0 @@ /**