You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
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.45
to
20.17.46
+2
-2
node v20.17/package.json
{
"name": "@types/node",
"version": "20.17.45",
"version": "20.17.46",
"description": "TypeScript definitions for node",

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

"peerDependencies": {},
"typesPublisherContentHash": "e7e8138d7a23d355bbf4f61fac4bc6bc6e88821819423ee188af157e4a609489",
"typesPublisherContentHash": "254b6abbad575f913cc04add19b967cb738b6a5e8de645e2a14b635ed10c40fa",
"typeScriptVersion": "5.1"
}

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

### Additional Details
* Last updated: Thu, 08 May 2025 03:33:47 GMT
* Last updated: Thu, 08 May 2025 14:02:18 GMT
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)

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

@@ -61,3 +61,3 @@ /**

/**
* V8's code cache data for the supplied source.
* Provides an optional data with V8's code cache data for the supplied source.
*/

@@ -114,7 +114,13 @@ cachedData?: Buffer | NodeJS.ArrayBufferView | undefined;

interface RunningCodeOptions extends RunningScriptOptions {
cachedData?: ScriptOptions["cachedData"];
/**
* Provides an optional data with V8's code cache data for the supplied source.
*/
cachedData?: ScriptOptions["cachedData"] | undefined;
importModuleDynamically?: ScriptOptions["importModuleDynamically"];
}
interface RunningCodeInNewContextOptions extends RunningScriptInNewContextOptions {
cachedData?: ScriptOptions["cachedData"];
/**
* Provides an optional data with V8's code cache data for the supplied source.
*/
cachedData?: ScriptOptions["cachedData"] | undefined;
importModuleDynamically?: ScriptOptions["importModuleDynamically"];

@@ -126,3 +132,3 @@ }

*/
cachedData?: Buffer | undefined;
cachedData?: ScriptOptions["cachedData"] | undefined;
/**

@@ -813,2 +819,5 @@ * Specifies whether to produce new cache data.

identifier?: string | undefined;
/**
* Provides an optional data with V8's code cache data for the supplied source.
*/
cachedData?: ScriptOptions["cachedData"] | undefined;

@@ -815,0 +824,0 @@ context?: Context | undefined;