2020-10-12 17:28:20 +00:00
---
title: Node.js API
parent: API docs
grand_parent: Reference
nav_order: 4
---
# ONNX Runtime Node.js API
{: .no_toc }
ONNX Runtime Node.js binding enables Node.js applications to run ONNX model inference.
## Contents
{: .no_toc }
* TOC placeholder
{:toc}
2021-05-10 22:19:37 +00:00
## Supported Versions
Node.js v12.x+ or Electron v5.x+
2020-10-12 17:28:20 +00:00
2021-05-10 22:19:37 +00:00
## API Reference
See [Typescript declarations ](https://github.com/microsoft/onnxruntime/blob/master/nodejs/lib/inference-session.ts ) and refer to [samples ](#samples ) for reference.
2020-10-12 17:28:20 +00:00
2021-05-10 22:19:37 +00:00
## Builds
Builds are published to **npm** and can be installed using `npm install`
2020-10-12 17:28:20 +00:00
2021-05-10 22:19:37 +00:00
| Artifact | Description | Supported Platforms |
|----------- |-------------|---------------------|
|[onnxruntime](https://www.npmjs.com/package/onnxruntime)|CPU (Release)| Windows x64 CPU NAPI_v3, Linux x64 CPU NAPI_v3, MacOS x64 CPU NAPI_v3|
|onnxruntime@dev| CPU (Dev)|Windows x64 CPU NAPI_v3, Linux x64 CPU NAPI_v3, MacOS x64 CPU NAPI_v3|
2020-10-12 17:28:20 +00:00
2021-05-10 22:19:37 +00:00
To use on platforms without pre-built binaries, you can [build Node.js binding from source ]((../../how-to/build.md#apis-and-language-bindings )) and consume using `npm install <onnxruntime_repo_root>/nodejs/` .
2020-10-12 17:28:20 +00:00
2021-05-10 22:19:37 +00:00
## Samples
See [Tutorials: Basics - NodeJS ](../../tutorials/inferencing/api-basics.md#nodejs )
2020-10-12 17:28:20 +00:00