
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.
A bunch of useful svelte utilities.
npm i nutzlich
yarn add nutzlich
pnpm add nutzlich
bun add nutzlich
<script>
import { useHover } from 'nutzlich';
const [isHovered, hoverRef] = useHover();
</script>
<div use:hoverRef>
{$isHovered ? 'Hovered' : 'Not hovered'}
</div>
<script>
import { windowSize } from 'nutzlich';
const { width, height } = windowSize();
</script>
<b>Width</b>
{$width}
<b>Height</b>
{$height}
<script>
import { title } from 'nutzlich';
const titleStore = title();
</script>
<label>Update title</label>
<input type="text" bind:value={$titleStore} />
<script>
import { network } from 'nutzlich';
const networkStore = network();
</script>
<span>
Since {$networkStore.since.toLocaleString()}
{$networkStore.state}
</span>
<script>
import { mediaQuery } from 'nutzlich';
const isLarge = mediaQuery('(min-width: 1024px)');
const isPortrait = mediaQuery('(orientation: portrait)');
</script>
<span>
Is large: {$isLarge} <br />
Is Portrait: {$isPortrait}
</span>
FAQs
A bunch of useful svelte utilities.
The npm package nutzlich receives a total of 0 weekly downloads. As such, nutzlich popularity was classified as not popular.
We found that nutzlich 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.