
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.
are-they-here
Advanced tools
are-they-here is a simple package that determines the last active tab of the domain.
Because localStorage
is persisted across all tabs of a single domain, this kind of tracking
is possible.
That is, if there's only one tab of example.com
is open, it's always considered active.
When two or more tabs of example.com
are open and user switches between them, active tab changes.
* - "any activity" means:
Install with yarn:
$ yarn add are-they-here
are they here provides four functions:
areTheyHere()
- true if current tab is active, false otherwise;ifTheyAreHere(cb)
- perform callback (cb
) if current tab is active;unlessTheyAreHere(cb)
- perform callback (cb
) if current tab is NOT active;whenTheyCome(cb)
- perform callback (cb
) every time current tab becomes active.import { unlessTheyAreHere, whenTheyCome } from 'are-they-here'
document.addEventListener('DOMContentLoaded', () => {
unlessTheyAreHere(() => console.log('You just missed DOMContentLoaded! :/'))
})
whenTheyCome(() => console.log('Greetings to this tab!'))
FAQs
Browser tab tracker
We found that are-they-here 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.