1.0.0-pre2 • Published 6 years ago
@eclipse-ditto/ditto-javascript-client-dom_1.0-pre v1.0.0-pre2
Ditto JavaScript DOM client
Implementation of the Eclipse Ditto JavaScript API that uses functionality of DOM environments,
e.g. btoa() or WebSocket.
It is published with two different module types to the npm registry:
- IIFE (
dist/index.bundle.js), for using it directly in a browser. The functionality is available under the base nameEclipseDittoJavascriptClient. You can use a CDN like UNPKG to directly use it in a HTML document without the need to compile or pack anything. - ES Module (
dist/index.es.js)
Building
Basically it makes sense to trigger the build process once from the parent module. Then you'll be able to use the default build process in here:
npm install
npm run build
npm run lint
npm test
# or npm run test:watchUsing
# replace <ditto-major.minor> with the major and minor version number of Eclipse Ditto you are using.
npm i --save @eclipse/ditto-javascript-client-api_<ditto-major.minor> @eclipse/ditto-javascript-client-dom_<ditto-major.minor>Create an instance of a client:
const domain = 'localhost:8080';
const username = 'ditto';
const password = 'ditto';
// could also use newWebSocketClient() for the WebSocket implementation
const client = DittoDomClient.newHttpClient()
.withoutTls()
.withDomain(domain)
.withAuthProvider(DomHttpBasicAuth.newInstance(username, password))
.apiVersion2()
.build();To find out how to use the client, have a look at the api documentation, since the API will stay the same no matter what implementation is used.
1.0.0-pre2
6 years ago
1.0.0-pre
6 years ago