@iotize/tap
Version:
IoTize Device client for Javascript
41 lines (25 loc) • 808 B
Markdown
# IoTize Device Client
See [CHANGELOG](https://cdn.jsdelivr.net/npm/@iotize/tap@latest/CHANGELOG.md).
## Installation
### Browser
Download [latest version](https://cdn.jsdelivr.net/npm/@iotize/tap@latest/dist/iotize-device-client.min.js) or use this link to load from [jsdeliver](jsdeliver.com).
```html
<script src="https://cdn.jsdelivr.net/npm/@iotize/tap@latest/dist/iotize-device-client.min.js" />
```
### npm
```bash
npm install @iotize/tap
```
## Usage
```javascript
// Library name: IoTizeDeviceClient
let iotizeDevice = IoTizeDeviceClient.Device.IoTizeDevice.create();
// ...
```
### Typings
Typings are provided with the library.
```typescript
import { IoTizeDevice } from '@iotize/tap/device';
// ...
```
For more informations, read the [documentation](http://developer.iotize.com).