Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

openvino-node

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openvino-node - npm Package Compare versions

Comparing version
2024.6.0
to
2025.0.0
+1
-1
dist/addon.js.map

@@ -1,1 +0,1 @@

{"version":3,"file":"addon.js","sourceRoot":"","sources":["../lib/addon.ts"],"names":[],"mappings":";;AAwqBA,kBACA,OAAO,CAAC,2BAA2B,CAAc,CAAC"}
{"version":3,"file":"addon.js","sourceRoot":"","sources":["../lib/addon.ts"],"names":[],"mappings":";;AA4rBA,kBACA,OAAO,CAAC,2BAA2B,CAAc,CAAC"}
{
"name": "openvino-node",
"version": "2024.6.0",
"version": "2025.0.0",
"description": "OpenVINO™ utils for using from Node.js environment",

@@ -5,0 +5,0 @@ "repository": {

@@ -23,3 +23,3 @@ # OpenVINO™ Node.js Bindings

Refer to the complete description of the `addon` API in the [documentation](https://docs.openvino.ai/2024/api/nodejs_api/addon.html).
Refer to the complete description of the `addon` API in the [documentation](https://docs.openvino.ai/2025/api/nodejs_api/addon.html).

@@ -42,3 +42,3 @@ See the [samples](https://github.com/openvinotoolkit/openvino/blob/master/samples/js/node/README.md) for more details on how to use it.

- [OpenVINO™ Node.js API](https://docs.openvino.ai/2024/api/nodejs_api/nodejs_api.html)
- [OpenVINO™ Node.js API](https://docs.openvino.ai/2025/api/nodejs_api/nodejs_api.html)
- [OpenVINO™ Node.js Bindings Examples of Usage](https://github.com/openvinotoolkit/openvino/blob/master/samples/js/node/README.md)

@@ -70,2 +70,2 @@

Copyright © 2018-2024 Intel Corporation
Copyright © 2018-2025 Intel Corporation

@@ -364,2 +364,6 @@ type SupportedTypedArray = Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array;

getSize(): number;
/**
* Reports whether the tensor is continuous or not.
*/
isContinuous(): boolean;
}

@@ -607,2 +611,16 @@ /**

};
/**
* It saves a model into IR files (xml and bin).
* Floating point weights are compressed to FP16 by default.
* This method saves a model to IR applying all necessary transformations
* that usually applied in model conversion flow provided by mo tool.
* Particularly, floating point weights are compressed to FP16,
* debug information in model nodes are cleaned up, etc.
* @param model The model which will be
* converted to IR representation and saved.
* @param path The path for saving the model.
* @param compressToFp16 Whether to compress
* floating point weights to FP16. Default is set to `true`.
*/
saveModelSync(model: Model, path: string, compressToFp16?: boolean): void;
element: typeof element;

@@ -609,0 +627,0 @@ }