UNPKG

ihs-wasm

Version:
30 lines (22 loc) 747 B
[![](https://img.shields.io/badge/C++-YES-blue?style=plastic&logo=cplusplus)](#) # ihs-wasm [![](https://img.shields.io/badge/status-testing-red?style=plastic&logo=appveyor)](#) 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 ....