Provided examples should help you with integration of this SDK with your app.
Deployment:
- When accessing examples via web browser always use
localhost
instead of127.0.0.1
. - Examples should be served via HTTPS.
- We recommend usage of NPM package https-localhost for simple local deployment.
To run TypeScript example:
- Install example dependencies and build an application:
# Make sure you're in the 'examples/typescript' folder # Install dependencies npm install # Build an application in folder 'dist/' npm run build
- Runtime resources are copied to
dist/
folder during build action, checkrollup.config.js
file. - Serve
dist/
folder, e.g.serve dist/
.
To run ES bundle example:
- Serve
es-module/
folder, e.g.serve es-module/
.- Make sure to have internet connection since runtime resources are loaded from the CDN.
- Alternatively, change resource paths and provide JS bundles.
To run UMD bundle example (standard browser integration):
- Serve
umd/
folder, e.g.serve umd/
.- Make sure to have internet connection since runtime resources are loaded from the CDN.
- Alternatively, change resource paths and provide JS bundles.