Bundle to run node-wot as browser-side library. Note, this will only include the node-wot in client mode with limited binding support.
Current Maintainer(s): @relu91 @danielpeintner
HTTP / HTTPS / WebSockets
Include the following script tag in your html
<script src="https://cdn.jsdelivr.net/npm/@node-wot/browser-bundle@latest/dist/wot-bundle.min.js"></script>
You can access all node-wot functionality through the "Wot" global object:
var servient = new Wot.Core.Servient();
var client = new Wot.Http.HttpClient();
Install browser-bundle in your project by running
npm install @node-wot/browser-bundle
An example of how to use node-wot as a browser-side library can be found under https://github.com/eclipse-thingweb/node-wot/blob/master/examples/browser/index.html
.
To run it live, open examples/browser/index.html
in a modern browser,
and consume the test Thing available under http://plugfest.thingweb.io:8083/testthing
to interact with it.