
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
life360-node-api
Advanced tools
An unofficial implementation of Life360's API in Node.js.
I am in the progress of dissecting the HTTP api behind Life360.com. This library allows you to login, see information about your family and circles, and locate your family members.
If you are interested in how I'm understanding Life360.com's HTTP api, go to this page at DISECTION.md.
$ 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. Save the new client to a variable (this holds your authentication tokens).
client = await life360.login('myusername', 'mySecurePassword123')
Get a list of your circles and log the names of each of them
let circles = await client.listCircles()
for (const circle of circles) {
console.log(circle.name)
}
Get a list of your circle's members
let myCircle = circles[0]
// alternatively, use the circles.findByName to search for your circle by name.
// let myCircle = circles.findByName('family')
let members = await myCircle.listMembers()
for (const member of members) {
console.log(`${member.firstName} ${member.lastName}`)
console.log(`${member.location.latitude}, ${member.location.longitude}`)
}
FAQs
An unofficial hook into Life360.com's API.
The npm package life360-node-api receives a total of 5 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.