js-l360
v1.0.3
Published
This is a Life360 client implemented in Nodejs. Uses node-tls-client under the hood to avoid TLS fingerprinting.
Downloads
11
Readme
Life360 Node.js Client
This is a Life360 client implemented in Nodejs. Uses node-tls-client under the hood to avoid TLS fingerprinting.
pnpm install js-l360import JsL360 from 'js-l360'
const client = new JsL360({
username: "your-awesome-username-here",
password: "your-totally-secure-password",
token: 'define-token-here-if-already-authenticated'
})
// Be sure to call this before using the client
await client.AuthenticateAsync();
// Get all circles the user is a member of
const circles = await item.GetCirclesAsync();
for (const circle in circles) {
// do something with the data...
}