A library to interact with Arlo systems written in Typescript
Lots of thanks to Arlo.py! I don't have to do nearly as much reverse engineering thanks to them.
const { Client } = require('arlo.js');
const credentials = {
username: 'Your-Username',
password: 'Your-Password',
twoFactorMethod: 'Your-TwoFactorMethod',
};
(async ()=>{
const arlo = new Client(credentials);
await arlo.login();
let profile = await arlo.getProfile();
console.log(profile);
})();
Installation is done using the
npm install
command:
$ npm install arlo.js
Documentation will be available on the Github Wiki
View the examples! Feel free to fork and submit your own!