
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
life360-node-api
Advanced tools
An unofficial implementation of Life360's API in Node.js.
I dissected the HTTP api behind Life360.com. This library allows you to login, see information about your family and circles, and locate your family members.
$ npm install life360-node-api
const life360 = require('life360-node-api')
Every function that talks to Life360.com will be asynchronous.
Login with your username and password.
await life360.login('myusername', 'mySecurePassword123')
Get a list of your circles and log the names of each of them
let circles = await life360.circles()
for (var circle of circles) {
console.log(circle.name)
}
Get a list of your circle's members
let myCircle = circles[0]
let members = await myCircle.members()
for (var member of members) {
console.log(`${member.firstName} ${member.lastName}`)
}
FAQs
An unofficial hook into Life360.com's API.
The npm package life360-node-api receives a total of 1 weekly downloads. As such, life360-node-api popularity was classified as not popular.
We found that life360-node-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.