nutzlich
v0.5.0
Published
A bunch of useful svelte utilities.
Downloads
11
Readme
Nutzlich
A bunch of useful svelte utilities.
Installation
npm i nutzlich
yarn add nutzlich
pnpm add nutzlich
bun add nutzlich
Quick-Guide
Hover
<script>
import { useHover } from 'nutzlich';
const [isHovered, hoverRef] = useHover();
</script>
<div use:hoverRef>
{$isHovered ? 'Hovered' : 'Not hovered'}
</div>
Window Size
<script>
import { windowSize } from 'nutzlich';
const { width, height } = windowSize();
</script>
<b>Width</b>
{$width}
<b>Height</b>
{$height}
Title
<script>
import { title } from 'nutzlich';
const titleStore = title();
</script>
<label>Update title</label>
<input type="text" bind:value={$titleStore} />
Network
<script>
import { network } from 'nutzlich';
const networkStore = network();
</script>
<span>
Since {$networkStore.since.toLocaleString()}
{$networkStore.state}
</span>
Media Query
<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>