Tural Hajiyev

Frontend Engineer

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)

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

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