Add nodejs samples README (#5005)

This commit is contained in:
Nat Kershaw (MSFT) 2020-09-03 15:58:44 -07:00 committed by GitHub
parent 4b9b5b6146
commit d7502eff8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 15 deletions

View file

@ -53,21 +53,7 @@ For a list of available dockerfiles and published images to help with getting st
## Node.js
### Samples
In each sample's implementation subdirectory, run
```
npm install
node ./
```
* [Basic Usage](./nodejs/01_basic-usage/) - a demonstration of basic usage of ONNX Runtime Node.js binding.
* [Create Tensor](./nodejs/02_create-tensor/) - a demonstration of basic usage of creating tensors.
<!--
* [Create Tensor (Advanced)](./nodejs/03_create-tensor-advanced/) - a demonstration of advanced usage of creating tensors.
-->
* [Create InferenceSession](./nodejs/04_create-inference-session/) - shows how to create `InferenceSession` in different ways.
* [Inference with Nodejs](./nodejs)
---

14
samples/nodejs/README.md Normal file
View file

@ -0,0 +1,14 @@
# ONNX Runtime nodejs samples
In each sample's implementation subdirectory, run
```bash
npm install
node ./
```
* [Basic Usage](01_basic-usage) - a demonstration of basic usage of ONNX Runtime Node.js binding.
* [Create Tensor](02_create-tensor) - a demonstration of basic usage of creating tensors.
* [Create InferenceSession](04_create-inference-session) - shows how to create InferenceSession in different ways.