SDK Installation
You can install the Bike Matrix SDK through two methods: CDN or NPM.
- CDN Installation
- NPM Installation
Include the script directly in your HTML:
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@bikematrix/web-components@1.3/dist/bm_core.js"
></script>
Note: Replace version 1.3 in the above URL with the latest version number, or the specific version you want to use.
Install our SDK web components package:
npm install @bikematrix/web-components
Then import it in your JavaScript/TypeScript file:
import BikeMatrix from "@bikematrix/web-components";

