© 2023 Hashnode
#preact
Hey fellas o/. In this blog, we are going to tinker around with a new stack, something I wanted to try for quite some time. A few months ago, I created a new home for myself on the internet (yet again…
In the world of JavaScript-based frameworks and libraries, Signals are a relatively new addition. It was first introduced in frameworks like Preact, React, Qwik, and SolidJS some time ago, however, An…
Sending your code out into the world can be a nerve-wracking experience. Regardless of how much testing you do beforehand, you’re never quite sure if everything will work according to plan. Even if it’s the case, during an applications life…
Highlights of the Project Using preact signals for state management. Preact routing. Appwrite backend services such as authentication and database. Prerequisite Node js install on your system. Setu…
by Amazing Enyichi Agu Alternatives to React is a series of articles looking at different JavaScript front-end frameworks. All the examined frameworks are like React in syntax and operation, but they…
🦖 Deno and Fresh In this post we are trying out Deno Fresh. Deno is a JavaScript runtime like, for example, Node or Bun. A JavaScript runtime is just an environment in which you can run the JavaScr…
Intro 🤔 Wait. Another new JavaScript web framework?? Okay we got that out of the way. Jokes aside, let's check out the new full stack framework built for Deno "Fresh". 🤙 What is Fresh? Fresh, which …
Preact is a fast 3kB alternative to React with the same modern API. There are mainly two key benefits it sells over React, speed and size. I've found out that React v16 is about 31.8kB, while Preact …
On the. day before April Fool's day, I got a silly idea for the April Fool's day project. It's similar to Akinator except it only determines your favorite language, has only Yes and No, and never ends…
JSX is the starting point React uses JSX to make things easier for the developers. So when you write something like this. <div id="foo"> Hello! </div> Babel with a react preset transforms it to thi…