This project brings the power of Kiota straight into your browser!
Kiota is a C# project and the dotnet
toolchain allows you to compile it with target browser-wasm
and eventually run it in the browser.
There are a few minor challenges with the integration of the produced artifacts into a real-world, modern, frontend application. We do maintain working examples up to date to make sure that it's feasible to leverage this functionality.
- Add this dependency to your project:
npm install -D @kiota-community/kiota-wasm
- Unpack the resources in the public assets folder of your project (and we suggest to add it to your
.gitignore
):
npm install -D copyfiles rimraf
"scripts": {
...
"postinstall": "rimraf ./public/kiota-wasm && copyfiles -u 4 'node_modules/@kiota-community/kiota-wasm/dist/**/*.*' 'public/kiota-wasm'"
}
...
- With some build tool such as
vite
you need to exclude those dependencies from the bundler:
export default defineConfig({
plugins: [
react(),
],
build: {
rollupOptions: {
external: [
/^.*kiota-wasm.*/,
]
}
}
})
- Now you can integrate the WASM module with a dynamic import, with
vite
:
// @ts-ignore
const { generate } = await import('/kiota-wasm/main.js?url');
or with webpack
:
const { generate } = await import(
/* webpackIgnore: true */ './kiota-wasm/main.js'
);
- Use the code generator functionality:
generate(spec: string, language: string, clientClassName: string, namespaceName: string, includePatterns: string, excludePatterns: string);
To build this project you need dotnet
version 8+ and the wasm-tools
:
dotnet workload install wasm-tools
and run the build:
dotnet build --configuration Release
Publish the package with:
yalc publish
In the example application folder:
yalc add @kiota-community/[email protected]
npm install
npm run dev
This repository is released on tag:
git fetch origin
git checkout origin/main
git tag <version>
git push origin <version>
and the CI will do the job.