<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: pishelin</title>
    <description>The latest articles on DEV Community by pishelin (@pishelin_6624396e0b75aeae).</description>
    <link>https://dev.to/pishelin_6624396e0b75aeae</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3637910%2F9edb4f6f-9644-4faa-8b86-9aa9ce70bde6.png</url>
      <title>DEV Community: pishelin</title>
      <link>https://dev.to/pishelin_6624396e0b75aeae</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pishelin_6624396e0b75aeae"/>
    <language>en</language>
    <item>
      <title>I Built a Backend Framework Because Express Setup Made Me Miserable</title>
      <dc:creator>pishelin</dc:creator>
      <pubDate>Tue, 08 Sep 2026 12:14:39 +0000</pubDate>
      <link>https://dev.to/pishelin_6624396e0b75aeae/i-built-a-backend-framework-because-express-setup-made-me-miserable-180g</link>
      <guid>https://dev.to/pishelin_6624396e0b75aeae/i-built-a-backend-framework-because-express-setup-made-me-miserable-180g</guid>
      <description>&lt;h1&gt;
  
  
  The Problem
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; #node #typescript #webdev #programming #tutorial&lt;/p&gt;

&lt;p&gt;After years of Next.js, going back to Express felt like traveling back in time:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;TypeScript? Configure it yourself&lt;/li&gt;
&lt;li&gt;Route structure? Copy from old repos&lt;/li&gt;
&lt;li&gt;Middleware? Install 5 different packages&lt;/li&gt;
&lt;li&gt;Prisma? More setup&lt;/li&gt;
&lt;/ol&gt;

&lt;h1&gt;
  
  
  The Solution
&lt;/h1&gt;

&lt;p&gt;Fastay - file-based routing for Node.js:&lt;/p&gt;

&lt;p&gt;src/&lt;br&gt;
├── api/&lt;br&gt;
│   ├── hello/&lt;br&gt;
│   │   └── route.ts      # → /api/hello&lt;br&gt;
│   ├── users/&lt;br&gt;
│   │   └── route.ts      # → /api/users&lt;br&gt;
│   └── products/&lt;br&gt;
│       └── route.ts      # → /api/products&lt;/p&gt;

&lt;h1&gt;
  
  
  What I Learned
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;How routing actually works under the hood&lt;/li&gt;
&lt;li&gt;Middleware chain architecture&lt;/li&gt;
&lt;li&gt;TypeScript generics at a deeper level&lt;/li&gt;
&lt;li&gt;Documentation is 50% of the work&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  What's Next
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;[ ] Plugin system&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Try It
&lt;/h1&gt;

&lt;p&gt;npm install fastay&lt;/p&gt;

</description>
      <category>backend</category>
      <category>node</category>
      <category>typescript</category>
      <category>webdev</category>
    </item>
    <item>
      <title>I Built a Backend Framework Because Express Setup Made Me Miserable

# The Problem

After years of Next.js, going back to Express felt like traveling back in time:

1. TypeScript? Configure it yourself
2. Route structure? Copy from old repos
3. Middleware?</title>
      <dc:creator>pishelin</dc:creator>
      <pubDate>Tue, 08 Sep 2026 12:12:09 +0000</pubDate>
      <link>https://dev.to/pishelin_6624396e0b75aeae/i-built-a-backend-framework-because-express-setup-made-me-miserable-the-problem-after-years-24o</link>
      <guid>https://dev.to/pishelin_6624396e0b75aeae/i-built-a-backend-framework-because-express-setup-made-me-miserable-the-problem-after-years-24o</guid>
      <description></description>
    </item>
    <item>
      <title>Node.js Didn’t Need Another Fast Framework — It Needed a Simple One</title>
      <dc:creator>pishelin</dc:creator>
      <pubDate>Sun, 30 Nov 2025 20:38:45 +0000</pubDate>
      <link>https://dev.to/pishelin_6624396e0b75aeae/nodejs-didnt-need-another-fast-framework-it-needed-a-simple-one-e28</link>
      <guid>https://dev.to/pishelin_6624396e0b75aeae/nodejs-didnt-need-another-fast-framework-it-needed-a-simple-one-e28</guid>
      <description>&lt;p&gt;Most developers just want to build clear, predictable, organized APIs — without reading 300 pages of docs, memorizing magic decorators, or loading half an ORM just to return a JSON.&lt;/p&gt;

&lt;p&gt;But today…&lt;/p&gt;

&lt;p&gt;Express stopped in time.&lt;/p&gt;

&lt;p&gt;Nest turned into a city with too many rules.&lt;/p&gt;

&lt;p&gt;Fastify is excellent, but it cares more about benchmarks than real people.&lt;/p&gt;

&lt;p&gt;So Fastay.js was born in the middle of this chaos, with one goal:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Productivity over performance.&lt;br&gt;
Convention over configuration.&lt;br&gt;
File-based routing without becoming a monolithic framework.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;No reinventing HTTP.&lt;br&gt;
No XML disguised as decorators.&lt;br&gt;
No enforced “enterprise architecture.”&lt;/p&gt;

&lt;p&gt;Just:&lt;/p&gt;

&lt;p&gt;modern Node.js&lt;/p&gt;

&lt;p&gt;a clear project structure&lt;/p&gt;

&lt;p&gt;good DX&lt;/p&gt;

&lt;p&gt;and straightforward APIs&lt;/p&gt;

&lt;p&gt;Enough to stay out of your way.&lt;/p&gt;

&lt;p&gt;We’re not trying to be the fastest.&lt;br&gt;
We’re trying to be something you can understand in 10 minutes&lt;br&gt;
and maintain for years.&lt;/p&gt;

&lt;p&gt;If Fastify is a V8 engine,&lt;br&gt;
Fastay.js is the lightweight motorcycle:&lt;br&gt;
simple, functional, and ready to work.&lt;/p&gt;

&lt;p&gt;Sometimes, that’s all you really need.&lt;/p&gt;

&lt;h1&gt;
  
  
  javascript
&lt;/h1&gt;

&lt;h1&gt;
  
  
  node
&lt;/h1&gt;

&lt;h1&gt;
  
  
  webdev
&lt;/h1&gt;

&lt;h1&gt;
  
  
  backend
&lt;/h1&gt;

&lt;h1&gt;
  
  
  opensource
&lt;/h1&gt;

&lt;h1&gt;
  
  
  programming
&lt;/h1&gt;

&lt;h1&gt;
  
  
  api
&lt;/h1&gt;

&lt;h1&gt;
  
  
  framework
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmaee4ntn9mdwioagj1v5.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmaee4ntn9mdwioagj1v5.jpg" alt=" " width="800" height="520"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
