jsmanifest logojsmanifest

Posts tagged “typescript

27 posts found

Build a Real-Time Chat with WebRTC Data Channels

Build a Real-Time Chat with WebRTC Data Channels

March 30, 2026

Learn how to build peer-to-peer real-time chat applications using WebRTC Data Channels. Discover when to choose P2P over traditional WebSocket solutions.

WebRTCReal-TimeJavaScript+2
Pagination Patterns: Offset vs Cursor-Based

Pagination Patterns: Offset vs Cursor-Based

March 25, 2026

While building APIs, I realized most developers (myself included) default to offset pagination without understanding when cursor-based pagination could save them. Here's what I learned about choosing the right pagination strategy.

paginationapi-designtypescript+2
tRPC: End-to-End Type Safety for Your API

tRPC: End-to-End Type Safety for Your API

March 23, 2026

Discover how tRPC eliminates the type safety gap between your TypeScript frontend and backend without code generation or schemas. Build fully type-safe APIs in minutes.

tRPCTypeScriptAPI Development+1
Build a Retry Mechanism with Exponential Backoff

Build a Retry Mechanism with Exponential Backoff

March 21, 2026

Learn how to build resilient JavaScript applications with retry logic and exponential backoff to handle network failures gracefully. Includes practical TypeScript examples and real-world patterns.

JavaScriptTypeScriptError Handling+1
Create a Modern npm Package in 2026: Complete Guide

Create a Modern npm Package in 2026: Complete Guide

March 8, 2026

Learn how to build and publish a modern npm package in 2026 with TypeScript, tsup, and best practices that actually matter. Skip the over-configuration trap.

npmtypescripttooling+1
pnpm Workspaces: Managing Monorepos Made Easy

pnpm Workspaces: Managing Monorepos Made Easy

March 7, 2026

Discover how pnpm workspaces simplify monorepo management with efficient dependency handling, the workspace protocol, and practical examples for production-ready projects.

pnpmmonorepoworkspaces+2
Property-Based Testing in JavaScript with fast-check

Property-Based Testing in JavaScript with fast-check

March 3, 2026

Discover how property-based testing with fast-check automatically generates test cases and finds edge cases that traditional example-based tests miss in your JavaScript applications.

testingjavascripttypescript+1
5 Test Coverage Mistakes That Hide Bugs

5 Test Coverage Mistakes That Hide Bugs

March 2, 2026

Discover 5 common test coverage mistakes that create a false sense of security and let bugs slip through. Learn how to write tests that actually catch issues.

testingjavascripttypescript+1
Web Workers: Move Heavy Computation Off the Main Thread

Web Workers: Move Heavy Computation Off the Main Thread

February 24, 2026

Your UI is freezing because you're drowning the main thread. Learn how web workers offload heavy computation to background threads and keep your app responsive.

javascriptperformanceweb workers+1
Build a Custom MCP Server for Your API in 30 Minutes

Build a Custom MCP Server for Your API in 30 Minutes

January 22, 2026

Step-by-step TypeScript tutorial to build your first MCP server. Connect any API to Claude, ChatGPT, or other AI assistants using the Model Context Protocol.

aitypescripttutorial+2
TypeScript Mapped Types Deep Dive: Transform Types Like a Pro

TypeScript Mapped Types Deep Dive: Transform Types Like a Pro

January 22, 2026

Master TypeScript's mapped types to build custom type transformations. Learn keyof iteration, property modifiers, and key remapping to create bulletproof utility types.

typescripttype-safetydevelopment+1
5 TypeScript Conditional Types Patterns Every Developer Should Master

5 TypeScript Conditional Types Patterns Every Developer Should Master

January 19, 2026

While reviewing a complex TypeScript codebase the other day, I realized that conditional types are one of those features that separate intermediate TypeScript developers from advanced ones. Let me show you the patterns that changed how I write type-safe code.

typescriptdevelopmentbest-practices
The Power of TypeScript's Satisfies Operator

The Power of TypeScript's Satisfies Operator

January 16, 2026

Learn when and why to use TypeScript's satisfies operator. Master the difference between type annotations, as assertions, and satisfies for bulletproof type safety.

typescripttype-safetybest-practice+1
15 Miraculous AI Agent Strategies for Code Generation in 2026

15 Miraculous AI Agent Strategies for Code Generation in 2026

January 15, 2026

Master 15 proven strategies to configure AI coding agents like Claude Code for better output. Includes CLAUDE.md examples, ESLint rules, and MCP workflows.

aitypescriptjavascript+2
5 AI-Powered TypeScript Refactoring Workflows That Save Hours

5 AI-Powered TypeScript Refactoring Workflows That Save Hours

January 13, 2026

Transform legacy code faster with these practical AI-assisted refactoring patterns. From callbacks to async/await, class components to hooks, and more.

typescriptairefactoring+2
Why TypeScript Works Better with AI Coding Tools

Why TypeScript Works Better with AI Coding Tools

January 12, 2026

Discover how TypeScript's type system gives AI tools the context they need for smarter refactoring, better code generation, and fewer bugs. Real examples included.

typescriptaidevelopment+2
10 TypeScript Utility Types That Will Make Your Code Bulletproof

10 TypeScript Utility Types That Will Make Your Code Bulletproof

January 11, 2026

Master TypeScript's built-in utility types to eliminate type duplication, prevent bugs, and write maintainable code that scales. Learn Pick, Omit, Partial, and 7 more essential utilities with real-world examples.

typescripttype-safetybest-practice+1
Build Type-Safe Form Validators in TypeScript with Zod

Build Type-Safe Form Validators in TypeScript with Zod

January 11, 2026

Master runtime form validation in TypeScript using Zod. Learn to build type-safe validators that catch errors at compile-time and runtime with practical examples.

typescriptdevelopmentbest practice+2
5 Test Integrity Rules Every AI Agent Should Follow (Before They Break Your Tests)

5 Test Integrity Rules Every AI Agent Should Follow (Before They Break Your Tests)

January 10, 2026

Learn the 5 critical test integrity rules that prevent AI agents from creating self-validating tests. Includes TypeScript examples and research-backed best practices.

testingtypescriptbest practice+2
Automate Link Checking in TypeScript with the DeadLinkRadar API

Automate Link Checking in TypeScript with the DeadLinkRadar API

January 5, 2026

Learn how to build a robust dead link detection system using TypeScript and the DeadLinkRadar REST API. Protect your SEO rankings, avoid money loss from broken links, and automate link monitoring to deliver a seamless user experience.

typescriptapilink-checking+3
Create Your New Modern TypeScript/JavaScript Library With tsup (2023)

Create Your New Modern TypeScript/JavaScript Library With tsup (2023)

January 15, 2023

We will be going over tsup (a modern robust bundling tool which is an alternative to the popular rollup) to create a JavaScript library ourselves, and then submit it to the npm registry for developers to npm install into their projects.

javascripttypescriptlibrary+1
Create Your New Modern TypeScript/JavaScript Library With tsup

Create Your New Modern TypeScript/JavaScript Library With tsup

November 15, 2022

We will be going over tsup (a modern robust bundling tool which is an alternative to the popular rollup) to create a JavaScript library ourselves, and then submit it to the npm registry for developers to npm install into their projects. Our code examples will be written in TypeScript which is a superset of JavaScript.

javascripttypescriptlibrary+1
9 Ways in React to Manipulate and Work With Components in 2020

9 Ways in React to Manipulate and Work With Components in 2020

April 1, 2020

In this article we will be going over 9 ways to manipulate and work with React components in 2020

javascriptreacttypescript+8
Generics in TypeScript

Generics in TypeScript

March 5, 2020

This post aims to go over generics in TypeScript and talk about what they are, how they work, and why we even need them.

javascriptgenericstypescript
Write More Robust JavaScript: 7 Best Practices

Write More Robust JavaScript: 7 Best Practices

January 15, 2020

Here are seven code practices in JavaScript that will help you write stronger code

javascriptcompositionbest practice+5
Extend Your React Electron Desktop App with TypeScript

Extend Your React Electron Desktop App with TypeScript

October 16, 2019

This article will go over steps on how to extend an electron repo to support TypeScript as it may be a little complex due the differences between the main and renderer process

javascriptreactdesktop+4
Create Your First React Desktop Application in Electron with Hot-Reload

Create Your First React Desktop Application in Electron with Hot-Reload

October 13, 2019

If you were wondering on how to begin with creating your first desktop application using JavaScript and TypeScript, then this post will help you to get started with writing your own desktop software application!

javascriptreactdesktop+4