Skip to content

Fix typo in readme #516

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions js/quick-start_onnxruntime-web-bundler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This example is a demonstration of basic usage of ONNX Runtime Web, using a bundler.

A bundler is a tool that puts your code and all its dependencies together in one JavaScript file. In this example, we use [webpack](https://webpack.js.org) to pack our code, and comsume the generated bundle.js in our HTML. See also [Quick Start - Web (using script tag)](../quick-start_onnxruntime-web-script-tag) for an example of using script tag.
A bundler is a tool that puts your code and all its dependencies together in one JavaScript file. In this example, we use [webpack](https://webpack.js.org) to pack our code, and consume the generated bundle.js in our HTML. See also [Quick Start - Web (using script tag)](../quick-start_onnxruntime-web-script-tag) for an example of using script tag.

Modern browser based applications are usually built by frameworks like [Angular](https://angularjs.org/), [React](https://reactjs.org/), [Vue.js](https://vuejs.org) and so on. Those frameworks usually utilize bundler plugins to build the whole application. To keep our example simple and small, we will not use those frameworks, but the usage of bundler should be similar.

Expand Down Expand Up @@ -30,4 +30,4 @@ In this example, we load onnxruntime, create an inference session with a simple
npx light-server -s . -p 8080
```

4. open your browser and navigate to the URL.
4. open your browser and navigate to the URL.
Loading