@goroya.io/theta-api-client
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

theta-api-client.js

Theta client for javascript.

Supported Platforms

  • Node.js
  • React Native

Installing

$ npm install @goroya.io/theta-api-client --save

Quick Start

HTTP Example

Node.js Example

const {ThetaHttpClient} = require('@goroya.io/theta-api-client');

(async () => {
  this.thetaClient = new ThetaHttpClient({
    hostname: '192.168.1.1',
    axiosConfig: {},
    auth: { user: 'THETAYLxxxxxxxx', pass: 'xxxxxxxx' }
  });
  await this.thetaClient
    .cameraTakePicture({
      timeout: 3000
    })
    .catch(e => {
      console.error('error:', e);
    });
})();

ES Modules & TypeScript & React Native

import { ThetaHttpClient } from '@goroya.io/theta-api-client';

this.thetaClient = new ThetaHttpClient({
  hostname: '192.168.1.1',
  axiosConfig: {},
  auth: { user: 'THETAYLxxxxxxxx', pass: 'xxxxxxxx' }
});
(async () => {
  const ret = await thetaClient.cameraTakePicture();
})();

Example

Node.js

Please check following codes.
https://github.com/goroya/theta-api-client.js/tree/master/example/node/take-picture-example

React Native

Please check following codes.
https://github.com/goroya/theta-api-client.js/tree/master/example/react-native/theta-example

Demo

Expo(React Native)

Please visit following url.
And Scan QR code using Expo App.

https://expo.io/@goroya/theta-example

Theta Client API

HTTP API

TypeDoc Document

https://goroya.github.io/theta-api-client.js/classes/thetahttpclient.html

Readme

Keywords

Package Sidebar

Install

npm i @goroya.io/theta-api-client

Weekly Downloads

35

Version

1.0.1

License

MIT

Unpacked Size

1.65 MB

Total Files

116

Last publish

Collaborators

  • goroya.io