ihs-wasm
Version:
ihs wasm modules
30 lines (22 loc) • 747 B
Markdown
[](#)
# ihs-wasm [](#)
This package contains wasm modules to be used for webapps. For the moment, the package is only for internal testing.
# USAGE
Add the following inside the head tag:
```
<script src = 'https://unpkg.com/ihs-wasm@latest/modules/functions/js/functions.js'></script>
```
Inside your html or js, the modules can be used as below:
```
<script>
functionsCPP()
.then(cppF => {
.......
cppF.function_name(functions_args);
.......
})
.catch((err)=>{ console.log(err) });
</script>
```
# DOCUMENTATION
on the way ....