Skip to content
This repository was archived by the owner on Oct 11, 2025. It is now read-only.

aklinker1/solid-primatives

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@aklinker1/solid-primatives

Personal collection of primitives to use with Solid JS. I'm a vue developer, so many of these are exact copies from @vueuse/core, which I think is better than solid-primatives.

import { watch } from 'jsr:@aklinker1/solid-primatives/watch';

const [count, setCount] = createSignal(0)
watch(count, (newCount, oldCount) => {
  console.log("Count changed from", oldCount, "to", newCount);
})

About

Personal primatives I use in my SolidJS projects.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors