xref: /oneTBB/WASM_Support.md (revision 7f0dc95e)
1<!--
2******************************************************************************
34* Licensed under the Apache License, Version 2.0 (the "License");
5* you may not use this file except in compliance with the License.
6* You may obtain a copy of the License at
7*
8*     http://www.apache.org/licenses/LICENSE-2.0
9*
10* Unless required by applicable law or agreed to in writing, software
11* distributed under the License is distributed on an "AS IS" BASIS,
12* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13* See the License for the specific language governing permissions and
14* limitations under the License.
15*******************************************************************************/-->
16
17# WASM Support
18
19``WASM`` stands for WebAssembly, a low-level binary format for executing code in web browsers.
20It is designed to be a portable target for compilers and to be efficient to parse and execute.
21
22WebAssembly aims to provide a fast, efficient, and safe way to run code in web browsers without needing plugins or other software. Code written in a variety of programming languages, including C, C++, Rust and others, can be compiled into WebAssembly format for use in web pages. This allows you to write high-performance applications that run directly in the browser.
23
24We currently have an [under development branch that provides you with WASM support](https://github.com/oneapi-src/oneTBB/tree/tbb_wasm).
25
26By using WASM, you can:
27* Create highly performant and scalable applications that can meet the demands of modern web-based systems.
28* Take advantage of oneTBB features to optimize the performance of your web-based applications.
29
30
31
32