
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@fe.whnhouse/use-system-mode
Advanced tools
This React Hook allows you to determine your system´s current Appearance Theme. It uses the CSS Feature MatchMedia to determine if dark mode is enabled or not.
The library exposes two different hooks:
useSystemMode()
allows you to get a reactive variable which contains either the value light
or dark
, depending on the selected theme.
useIsDarkMode()
gives you a boolean variable which determines whether dark mode is enabled or not.
const App = () => {
const systemMode = useSystemMode()
return (
<div>
<h1>System Mode: {systemMode}</h1>
</div>
)
}
const App = () => {
const darkMode = useIsDarkMode()
return (
<div>
{darkMode ? <h1>Dark Mode</h1> : <h1>Light Mode</h1>}
</div>
)
}
FAQs
A React Hook to determine system mode (light / dark)
The npm package @fe.whnhouse/use-system-mode receives a total of 0 weekly downloads. As such, @fe.whnhouse/use-system-mode popularity was classified as not popular.
We found that @fe.whnhouse/use-system-mode 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.