Tural Hajiyev

Frontend Engineer

Jun 18, 2026

React Project Folder Structure — Patterns for Scalable Frontend Apps

A comparison of type-based and feature-based project folder structures.

React
Architecture
Frontend
Project Structure
Web Development
type-based folder structure
Feature-based folder structure
Feature-Sliced Design (FSD)
Apr 24, 2026

GraphQL vs REST API — Which one to choose?

REST gives you fixed endpoints with set responses controlled by the server. GraphQL lets the client pick the exact data needed in a single request.

API Design
GraphQL
REST API
Backend
Frontend
Web Development
Mar 4, 2026

Monolith, Monorepo, or Microfrontends?

Monoliths are simple, monorepos keep projects organized, and most teams don't need microfrontends.

Architecture
Monolith
Monorepo
Microfrontends
Web Development
Team Productivity
Feb 12, 2026

Simple Search vs Binary Search

Binary search isn't smarter than simple search. It's just efficient because someone did the organizing work ahead of time.

Algorithms
Binary Search
Linear Search
Computer Science
Performance
Oct 5, 2025

Fancy TypeScript Things I Use Every Day (But Didn't Know Their Names)

Personal notes on TypeScript features and patterns I use regularly, but never knew the official terminology for.

TypeScript
Type System
Personal Notes
Everyday TS
Apr 10, 2025

How a Web Page Loads HTML, CSS, and JS Content

What happens between typing a URL and seeing the page

Web Development
Browser Internals
Performance
Frontend