Skip to content

Phillip-England/staci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Staci

drop-in, reactive signals 🤌

The Docs

Read the docs at stacijs.com

Counter Example

<script>
  staci.set("count", 0);
  staci.createEvent("increment-count", () => {
    let [count, setCount] = staci.get("count");
    setCount(count + 1);
  });
</script>

<button st-click="increment-count">
  <p>Increment</p>
  <st-signal>{| count |}</st-signal>
</button>

Use-Case

staci is all about compliementing existing HTML. Other solutions dictate the way you write your HTML. When you want to generate HTML, you must do so with the framework.

staci is different. She is not about replacing you're existing wife__ I mean system. Rather, staci intends to join-in where needed and can be adopted incrementally overtime.

About

drop-in, reactive signals 🤌

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published