mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-26 22:35:43 +00:00
36 lines
624 B
Markdown
36 lines
624 B
Markdown
|
|
# ONNX Runtime Node.js API
|
||
|
|
|
||
|
|
This directory contains the Node.js binding for the ONNX runtime.
|
||
|
|
|
||
|
|
## Installation
|
||
|
|
|
||
|
|
Install the latest stable version:
|
||
|
|
|
||
|
|
```
|
||
|
|
npm install onnxruntime
|
||
|
|
```
|
||
|
|
|
||
|
|
Install the latest dev version:
|
||
|
|
|
||
|
|
```
|
||
|
|
npm install onnxruntime@dev
|
||
|
|
```
|
||
|
|
|
||
|
|
## Get Started
|
||
|
|
|
||
|
|
Refer to [examples](./examples/README.md) for usage and instructions.
|
||
|
|
|
||
|
|
## Supported Platforms
|
||
|
|
|
||
|
|
- Windows x64 CPU NAPI_v3
|
||
|
|
- Linux x64 CPU NAPI_v3
|
||
|
|
- MacOS x64 CPU NAPI_v3
|
||
|
|
|
||
|
|
## Building
|
||
|
|
|
||
|
|
Refer to [BUILD](./BUILD.md) for instructions to build ONNX Runtime Node.js binding.
|
||
|
|
|
||
|
|
## License
|
||
|
|
|
||
|
|
[MIT License](https://github.com/Microsoft/onnxruntime/blob/master/LICENSE)
|