FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

Β© 2026 FlareStart. All rights reserved.

Back to articles
Introducing: Kiru v1 😁
How-ToWeb Development

Introducing: Kiru v1 😁

via Dev.to JavaScriptLankyMoose11h ago

Kiru is designed to be a comprehensive, lightweight solution for building interactive UIs on the web. What started off as a 'React - but more' kind of venture turned into a quest to provide better app-building fundamentals. For v1, Kiru pivoted from maintaining a React-like component model with hooks, to going all-in with signals. A small example: function Counter () { const count = signal ( 0 ) return () => ( < button onclick = { () => count . value ++ } > Click Me! { count } </ button > ) } State, lifecycle hooks and variables are created in a setup scope. If your component doesn't create any local state, it can just return JSX. This removes the inherent complexity of interpreting or mutating state across renders like how we do with React. I really think this component model makes a lot of sense and naturally leads to better decisions about how to build complex apps. Let me know what you think! Kiru Making Web Development Easy Again - rausten.dev

Continue reading on Dev.to JavaScript

Opens in a new tab

Read Full Article
0 views

Related Articles

How-To

The fact that we know what hunger and thirst are makes us treat them as normal.

Medium Programming β€’ 17m ago

The Journey of a 19-Year-Old Bangladeshi Muslim Software Engineer
How-To

The Journey of a 19-Year-Old Bangladeshi Muslim Software Engineer

Medium Programming β€’ 39m ago

How-To

The Hidden Magic (and Monsters) of Go Strings: Zero-Copy Slicing & Builder Secrets

Medium Programming β€’ 1h ago

Why Watching Tutorials Won’t Make You a Good Programmer
How-To

Why Watching Tutorials Won’t Make You a Good Programmer

Medium Programming β€’ 4h ago

The Code That Makes Rockets Fly
How-To

The Code That Makes Rockets Fly

Medium Programming β€’ 5h ago

Discover More Articles