3.3.1 • Published 6 years ago

remot3it v3.3.1

Weekly downloads
2
License
MIT
Repository
-
Last release
6 years ago

remot3it.js

A JavaScript library that wraps the remot3.it APIs to make your life easier.

Usage

npm install --save remot3it

Now you can import the library, initialize it and start making requests to the API. All methods return Promises, so you can use async/await or traditional promises as you prefer.

import Remot3it from 'remot3it'

// Configure an instance of the remot3.it client
const remot3it = new Remot3it({
  // Authenticate using your developer key:
  developerKey: '...your developer key here...',

  // or, use an access key:
  accessKey: '...your access key here...',

  // or even a token:
  token: '...an auth token...',

  // Optional: Configure the host:
  host: 'https://api.remot3.it/apv/v24.41',
})

// Login (your first step)
await remot3it.login(email, password)

// Search for your devices
// This will do a fuzzy search for any device with the devicename of `AWS*`:
const devices = await remot3it.devices('AWS')
console.log(devices)

Setup

Install nvm and then run:

# Install and use the preferred version of node
nvm install
nvm use

# Install dependencies
npm install

# Run development server
npm start
3.3.1

6 years ago

3.3.0

6 years ago

3.2.1

6 years ago

3.2.0

6 years ago

3.1.0

6 years ago

3.0.0

6 years ago

2.12.0

6 years ago

2.11.0

6 years ago

2.10.0

6 years ago

2.9.0

6 years ago

2.8.0

6 years ago

2.7.0

6 years ago

2.5.0

6 years ago

2.4.0

6 years ago

2.3.0

6 years ago

2.2.0

6 years ago

2.2.0-0

6 years ago

2.1.0

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.6.1

6 years ago

1.6.0

6 years ago

1.5.0

6 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago