Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-arlo-api

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-arlo-api

NodeJS wrapper around Arlo event-based API.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Node Arlo API

An API library for Node.js that interacts with Netgear's Arlo camera system.

The API is not complete yet and at the moment mainly used for personal purposes only. I will continue completing the API and also adding more documentation and examples.

Some example usage is already shown in node-arlo-cli which can be started as follows:

node node-arlo-cli -u 'ARLO_USERNAME' -p 'ARLO_PASSWORD'

You still will be prompted providing username and password whereas the defaults are those passed.

The example shows how to derive device information, arm or disarm the system. This should provide a basic understand of using the API in general.

Example based on arlo-api.js

If you just want to copy the contents of arlo-api.js and use that, here's how it might look within your app:

import ArloApi from 'arlo';

const arlo = new ArloApi('username', 'password');
const auth = {username: 'username', password: 'password'};
const arlo = new ArloApi(auth.username, auth.password);

const devices = arlo.getDevices();
const cameras = arlo.getDevices().then(deviceArray => arlo.getCameras(deviceArray[0].deviceId, deviceArray[0].xCloudId)));

Keywords

FAQs

Package last updated on 13 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc