Building Reusable Login Component With Solid.js And SSR
Built a versatile login component with Solid.js & server-side rendering (SSR) for reusability across multiple apps. Encapsulated as an npm package for seamless integration via iframes.
At Hexmos, we needed a versatile login component for our LiveAPI product that could be reused across multiple applications. With performance and reusability in mind, we chose Solid.js to build the component, leveraging server-side rendering (SSR) to optimize the user experience. You can check out the LiveAPI login system in action here: 👉 LiveAPI Login How We Built It 1. Creating the Login Component We started by building the login logic in a standalone repository using Solid.js. Solid’s reactivity and lightweight runtime allowed us to create a performant login flow...