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
I shipped two frontend libraries in one day using AI agents
How-ToWeb Development

I shipped two frontend libraries in one day using AI agents

via Dev.toSzymon Wolak1mo ago

Today I ended up publishing two small libraries. Wasn't really planned. I just wanted to try using AI agents seriously and see how far I could push it in one day. By the evening both were on npm and GitHub, which still feels a bit strange. These are the two things. Effects demo: https://libs.protohiro.com/effects/ https://github.com/protohiro-com/effects npm install @protohiro/effects This one is basically a collection of CSS effects for React. Things like: gradient borders glow noise overlays The main thing I cared about was not adding extra DOM elements. I always found it annoying when an effect meant wrapping components in extra divs. That tends to break layouts sooner or later. So the idea here is just: const ref = useGlowEffect({ color: "#3b82f6", blur: 20 }) return <div ref={ref}>Card</div> Nothing fancy really. Just reusable CSS packaged as hooks. I mostly built it because I kept rewriting the same stuff in different projects. CSS tokens extractor https://github.com/protohiro-co

Continue reading on Dev.to

Opens in a new tab

Read Full Article
34 views

Related Articles

I didn't have to drill these renter-friendly smart lights into my wall - and I love them for it
How-To

I didn't have to drill these renter-friendly smart lights into my wall - and I love them for it

ZDNet • 4d ago

How to Create and Use Checkboxes in Figma
How-To

How to Create and Use Checkboxes in Figma

FreeCodeCamp • 4d ago

The DSA Illusion: Why Most Data Structures Don’t Actually Exist
How-To

The DSA Illusion: Why Most Data Structures Don’t Actually Exist

Medium Programming • 4d ago

This modular crafting machine can create custom shirts, phone cases, and molds
How-To

This modular crafting machine can create custom shirts, phone cases, and molds

The Verge • 4d ago

I built an expense tracker because every other one wanted my bank login
How-To

I built an expense tracker because every other one wanted my bank login

Dev.to • 4d ago

Discover More Articles