Showing posts with label TypeScript. Show all posts
Showing posts with label TypeScript. Show all posts

React Router Typescript

React Router Typescript
React Router is a popular routing library for React applications, and it can be easily integrated with TypeScript to provide type safety and better documen…
Read more »

How to Build a Rust CLI Tool to Generate Typescript Types from Rust

Motivation Why would you want to write a tool that converts Rust types to Typescript types? Aren't they entirely separate languages? There are many…
Read more »

Validate your data with Zod

Validate your data with Zod
Preface Surely many developers do not know where the line between Javascript and Typescript is. Some people probably wasted a lot of time understan…
Read more »

A first look at tRPC

A first look at tRPC
All the code for this project can be found at ajcwebdev/a-first-look/trpc .
Read more »

Level up your TypeScript with Record types

Level up your TypeScript with Record types
The Record type in TypeScript is used to define dictionaries or key-value pairs with a fixed type for the keys and a fixed type for the values. It allows…
Read more »

Understanding TypeScript generators

Understanding TypeScript generators
Generator functions run from top to bottom like normal functions but can be paused during execution and resumed later from the same point. This process c…
Read more »

How to Use AI to Create Your Own 'Super Macro' VS Code Extensions

How to Use AI to Create Your Own 'Super Macro' VS Code Extensions
ChatGPT is an advanced AI that makes it super easy to create custom Visual Studio Code extensions. You can use it to add any functionality you need to y…
Read more »

An E-Commerce project, developed by Nextjs and typescript

An E-Commerce project, developed by Nextjs and typescript
An E-commerce site template, implemented with Next.js and TypeScript . Styled with TailwindCSS . This is one of my portfolios, but I would be pleased if the…
Read more »

JSDoc 101

JSDoc 101
JSDoc has been my go-to tool for documenting JavaScript code for a while, and with the recent buzz around Svelte migration, I decided to share some tips and t…
Read more »

Dev News: Trouble in npm, Vue 3.3 and Cloudflare Updates

Dev News: Trouble in npm, Vue 3.3 and Cloudflare Updates
ReversingLabs researchers find more malware in the npm. In other news, there's a new release of Vue and AI updates from Cloudflare. Photo by RealTo…
Read more »

5 Front-End Web Frameworks to Consider Other Than React

5 Front-End Web Frameworks to Consider Other Than React
Modern web development requires developers to focus on creating complex logic, improving performance, and serving users on different networks across the globe …
Read more »

7 Secret TypeScript Tricks Pros Use

7 Secret TypeScript Tricks Pros Use
TypeScript is a superset of JavaScript that adds optional static typing and other features to the language. It is designed to make it easier to write and main…
Read more »

Remult, a Crud Framework for Fullstack Typescript

Remult, a Crud Framework for Fullstack Typescript
Remult is a full-stack CRUD library that simplifies development by leveraging TypeScript models , providing a type-safe API client and query builder. It provid…
Read more »

5 Best VSCode Plugins for Dev Teams

5 Best VSCode Plugins for Dev Teams
Visual Studio Code   is a popular code editor that has gained immense popularity among developers due to its flexibility and extensive library of plugins. The …
Read more »

Getting started with the TypeScript satisfies operator

Getting started with the TypeScript satisfies operator
TypeScript is a programming language that is a superset of JavaScript. It adds optional static typing, classes, and interfaces to JavaScript. TypeScript compi…
Read more »

React Testing Library & Accessibility

React Testing Library & Accessibility
Have you ever wondered how to test your React components in a way that mimics how users interact with them? If so, you might be interested in learning about Re…
Read more »

Why Typescript is our god now

Why Typescript is our god now
Using TypeScript for better code quality and maintainability in applications If you're working on a  Javascript  project, you know that maintaining a lar…
Read more »