PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Blocks

    Design blocks for your website

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Siddharth

@siddharthshyniben

232 Points 2 Followers

7 Posts

0 Answers

Jack of all trades, master of some.

I made a Node.js colors library in 192 bytes minzipped (+ code explanation!)

A few minutes ago, I published [PlanckColors](https://www.npmjs.com/package/planckcolors). It's probably the smallest node module for colors on the internet, at just 119 bytes minzipped! It'...

MDSveX: The bridge between Markdown and Svelte

A few days ago, I was looking around for tools to write my blog. I knew about [MDX], but I wasn't really good at React and friends, which seemed to be the only frameworks supporting MDX pain...

Debug a node.js app using the built-in debugger

It's about time we stop using `console.log` to debug things. While [`console.*` are really powerful tools](https://blog.siddu.tech/7-console-log-alternatives), it's a pain to maintain. Most...

5 Secret features of JSON you didn't know about 🤯

I'm pretty sure you have used the global `JSON` object for a variety of things, like in fetch requests and to avoid the dreaded `[object Object]`. I also bet you didn't know about the rest o...

Explained: Imperative vs Declarative programming

You most probably have heard of declarative vs imperative programming. You might also have looked it up, and got something like this > In computer science, declarative programming is a pro...

The complete guide to destructuring in JavaScript

Two commonly used data structures in JavaScript are `Object` and `Array`. And many times we may need to extract individual pieces of the object instead of the whole thing. This is where Dest...