Resources No resource found - How to Set Up a Next.js Project With TypeScript From ScratchApr 04, 2026. Learn how to set up a Next.js project with TypeScript from scratch! This beginner-friendly guide covers project creation, structure, and best practices for building scalable web apps.
- What Is TypeScript Interface vs Type Alias and When to Use Which?Apr 03, 2026. Unlock the power of TypeScript! Learn the difference between Interface and Type Alias with clear examples. Choose the right tool for object shapes, unions, and more!
- How to Set Up a Next.js Project With TypeScript From Scratch?Apr 03, 2026. Learn to set up a Next.js project with TypeScript from scratch! This guide covers project creation, structure, TypeScript configuration, and best practices for building scalable, SEO-friendly web apps. Improve code quality and developer experience!
- How to Build Your First MCP Server Using TypeScript Step by StepApr 02, 2026. Learn to build your first Model Context Protocol (MCP) server using TypeScript! This step-by-step guide covers setup, tools, and real-world examples for AI-powered applications.
- What Are the Breaking Changes in TypeScript 6.0 for React Developers?Mar 27, 2026. TypeScript 6.0 introduces breaking changes for React developers! Learn how to migrate your projects, handle strict mode, JSX updates, and avoid common errors. Upgrade smoothly!
- JavaScript vs TypeScript with React in ASP.NET Core: What Should You Choose?Feb 28, 2026. JavaScript vs TypeScript with React in ASP.NET Core Using Visual Studio
Meta Description: Learn the real difference between JavaScript and TypeScript when building React applications inside ASP.NET Core projects in Visual Studio. Compare type safety, scalability, performance, tooling, and best practices.
- Should You Use JavaScript or TypeScript with React in ASP.NET Core?Feb 28, 2026. Discover whether JavaScript or TypeScript is the better choice when building React applications inside ASP.NET Core projects. A practical guide for .NET developers using Visual Studio.
- Is TypeScript Worth the Extra Setup Complexity in an ASP.NET Core React Project?Feb 28, 2026. TypeScript in ASP.NET Core React: Is the initial complexity worth it? Explore the short-term costs vs. long-term gains, refactoring benefits, and developer experience.
- Does TypeScript Improve Performance in a React Application?Feb 28, 2026. TypeScript doesn't directly boost React app performance at runtime. However, its benefits like fewer bugs and safer refactoring indirectly improve efficiency and stability.
- How Does TypeScript Help When Consuming ASP.NET Core Web APIs?Feb 28, 2026. TypeScript bridges the gap between React and ASP.NET Core APIs, preventing contract drift. It offers strong typing, safer refactoring, and automatic model generation.
- How to Migrate a React JavaScript App to TypeScript in ASP.NET CoreFeb 28, 2026. Step by step guide to migrating an existing React JavaScript project to TypeScript inside an ASP.NET Core solution using Visual Studio. Learn best practices and common pitfalls.
- Does TypeScript Make Refactoring Safer in ASP.NET Core React Projects?Feb 28, 2026. Learn how TypeScript improves refactoring safety in large enterprise React applications that consume ASP.NET Core Web APIs, reducing bugs and improving maintainability.
- How to Generate TypeScript Models from ASP.NET Core DTOs Using OpenAPIFeb 28, 2026. Learn how to automatically generate TypeScript interfaces and API clients from ASP.NET Core DTOs using Swagger, NSwag, and OpenAPI tools for safer React integration.
- JavaScript vs TypeScript Build and Tooling Differences in ASP.NET Core React ProjectsFeb 28, 2026. Understand the build process, tooling, and Visual Studio differences between JavaScript and TypeScript when using React inside ASP.NET Core applications.
- How TypeScript Improves Collaboration and Maintainability in ASP.NET Core React ProjectsFeb 28, 2026. Discover how TypeScript enhances team collaboration, code quality, and long term maintainability in full stack ASP.NET Core and React applications.
- The Future of TypeScript in AI-Driven DevelopmentDec 11, 2025. Explore the future of TypeScript in AI-driven development and its synergy with Angular.
Learn how AI tools enhance TypeScript workflows for safer, scalable, and maintainable applications.
A practical guide for senior developers embracing AI-assisted coding in 2025.
- Harnessing TypeScript for Scalable and Maintainable Web ApplicationsNov 11, 2025. Discover how TypeScript enhances web application development with static typing, improved tooling, and increased developer productivity. Build scalable and maintainable applications.
- Using React with TypeScript – Common Patterns Every Developer Should KnowSep 05, 2025. TypeScript adds static typing to JavaScript, which means you catch errors earlier, improve editor autocomplete, and make your codebase easier to maintain. When combined with React, TypeScript can significantly improve how you work with components, state, and props.
- Introduction to Playwright and TypeScript for Automation TestingAug 29, 2025. Explore Playwright & TypeScript for automation testing! This guide covers setup, advantages over Selenium, and why TypeScript enhances reliability and scalability.
- Sir, This Is a TypeScript FunctionMay 21, 2025. Functions are one of the most fundamental concepts in programming. They’re where your application’s logic lives and in TypeScript, they’re even more powerful thanks to static typing.
- How Go Improves TypeScript Compilation & ToolingMar 14, 2025. TypeScript's migration to a Go-based compiler boosts performance with faster builds, parallelized type-checking, and improved memory efficiency. Developers enjoy a seamless workflow with enhanced tooling.
- Leveraging TypeScript Decorators for Modern Web DevelopmentDec 08, 2024. Explore the role of TypeScript decorators in modern web development. Learn how decorators enhance code readability, simplify logic, and support powerful metadata features.
- How to Sort a List of Objects in TypeScript by PropertyNov 09, 2024. This guide covers sorting lists of objects in TypeScript, with examples for sorting by string, numeric, and date properties. It demonstrates using the sort() method, localeCompare for strings, custom sorting functions for dates and numbers, and multi-property sorting techniques.
- Map, Filter and Reduce in TypeScript with ExamplesOct 30, 2024. This guide provides a comprehensive overview of these essential functions, complete with practical examples to illustrate their use in real-world applications. Enhance your coding skills and streamline data manipulation with TypeScript today.
- JavaScript vs TypeScript File Extensions: .js .jsx .ts .tsxAug 08, 2024. Unlock the mysteries behind JavaScript and TypeScript file extensions with this comprehensive guide. Learn the differences between .js, .jsx, .ts, and .tsx files, and understand how each plays a crucial role in modern web development.
- Creating a Web Resource Based on React TypeScript in Dynamics 365Jun 13, 2024. Integrating React and TypeScript with Dynamics 365 enables developers to build responsive and maintainable user interfaces. This approach leverages modern web practices for enhanced performance, reusable components, and seamless integration into Dynamics 365 environments.
- Interface In TypeScript / Complex Types In TypeScriptJun 09, 2024. In TypeScript, using interfaces helps define complex types, providing clarity and preventing runtime issues. Unlike JavaScript's var/let, interfaces explicitly outline object properties. This approach mirrors server-side coding practices, like in C#, ensuring adherence to coding standards and enhancing type safety.
- Why Choose TypeScript Over JavaScript for Better DevelopmentJun 03, 2024. Explore JavaScript's journey from its inception at Netscape to its standardization by ECMA. Discover Angular's evolution as a modern front-end framework and its synergy with TypeScript for enhanced development. Understand the benefits of TypeScript over JavaScript in terms of static typing, IDE support.
- Type-safe development with React TypeScript FundamentalsMay 21, 2024. Find out how TypeScript and React work together with Ziggy Rafiq's comprehensive guide. Learn how to use type-safe props, state management, event handling, and component lifecycles for robust and maintainable front-end development. Learn how to use React TypeScript to unleash the power of type safety.
- Power of Typescript Scroll EventsMar 06, 2024. The onscroll event in JavaScript is a powerful tool that gets triggered when a scrollbar is used for an element. This event is particularly useful for creating dynamic and interactive web experiences, allowing developers to respond to user interactions with scrolling.
- A Symphony of ES7 Features and TypeScript EleganceJan 16, 2024. JavaScript strings are fundamental components in web development, representing sequences of characters. This article explores advanced string manipulation using ES7 features and TypeScript, enhancing your ability to wield this crucial data type.
- A Fix To Typescript TS7006: Parameter 'xxxx' Implicitly Has An 'Any' TypeDec 27, 2021. In this article, you will learn about a fix to Typescript TS7006: Parameter 'xxxx' Implicitly Has An 'Any' Type.
- React + TypeScript - The BasicsSep 03, 2021. In this article, you will learn about implementing better type checking in React applications using TypeScript.
- New Features In TypeScript 4.3Jun 24, 2021. In this article, you will learn about the features Introduce in Typescript 4.3.
- Fundamentals Of TypeScript - Object Oriented ConceptsApr 28, 2021. In this article, you will learn about the fundamentals of TypeScript - Object Oriented Concepts.
- Fundamentals Of Typescript - Basic ConceptsApr 27, 2021. In this article, you will learn about Fundamentals of Typescript - basic concepts.
- Installing Node.js And Typescript And Creating First Typescript Program And Component In AngularAug 26, 2020. In this article, we are going to discuss about the steps which are required to follow for the installation of Node.js and typescript also we are going to create, compile and execute our first typescript program. Along with this we are going to create the component using Angular CLI and explore the files which are created.
- Client-Server WASM-Application In C#, TypeScript And Transact-SQLJul 21, 2020. In this article, we describe a Blazor-WASM sample application. Although the article is associated with Web-development, it is not about the classical web. It is related to general Client-Server programming in conventional languages but in connection with existing Web-reality to which some experimental things are applied.
- Interface In Typescript Jan 15, 2020. In this article you will learn about Interface in Typescript.
- Angular - Typescript FundamentalsDec 23, 2019. In order to build an application with Angular, you need to be comfortable with typescript. In this article, I'll explain the fundamentals of typescript.
- Getting Started With React Using TypeScript - For BeginnersMay 01, 2019. In this article, we will learn how to get started with React using TypeScript. This tutorial has a form which takes the input from the users and displays the entered values when the button is clicked.
- Rest API In Node.js Using TypeScript And FortjsApr 02, 2019. This article explains how to create a REST API using TypeScript and Fortjs.
- How To Include Regions In TypeScript While Working In Visual Studio CodeOct 16, 2018. In this article I’ll share small detail how to include regions when we work in TypeScript in Visual Studio code.
- Debugging TypeScript In Visual Studio Code Using ChromeSep 21, 2018. This article is for those who are working in an Angular application with Typescript and want to debug their code in Visual Studio Code.
- The Angular Series - TypeScript In A Nutshell - Part TwoMay 29, 2018. TypeScript is nothing but a super set of javascript, it means that everything we can do with javascript we can also develop through Typescript.
- ts.validator.fluent - TypeScript Based Generic, Fluent Validation FrameworkApr 10, 2018. I have created a TypeScript based generic, fluent validation framework. Also, I have built a demo Angular 6 CLI app which uses the framework for client-side form validation.
- ASP.NET Core Using TypeScript (2.6) With RequireJS In C#Apr 10, 2018. This article demonstrates how to create and use an application in ASP.NET Core using TypeScript (2.6) with RequireJS (2.3.5) in C#.
- How To Install TypeScript Plug-in In Visual Studio 2015Jan 13, 2018. In this article, we will see the simple step by step process to install TypeScript Plugin for Visual Studio.
- Constructors In TypeScript 2.0Jan 08, 2018. Let us learn about constructors in TypeScript 2.0.
- Hello World With TypeScript 2.0Jan 02, 2018. TypeScript is a language which is a super set of JavaScript language. It compiles the code written to plain javascript code. So all the correct javascript code is valid in TypeScript. Apart from that TypeScript provides extra features also, which is very useful for writing good code.
- How To Include External JavaScript Frameworks To TypeScript ProjectsDec 29, 2017. In this article we will see how can we include external JavaScript Frameworks To TypeScript Projects
- Creating Azure WebJob To Access SharePoint Using Typescript And Node.jsNov 14, 2017. Create a new folder in the solution by the name 'src' and create index.ts file inside the folder. In this folder we will keep all the source files which will get executed when the Job runs. Remember to keep the index.ts at the root of the src and all other files (if any) keep them in the folder otherwise the job will fail.
- Step By Step Creation Of Angular Project With TypeScript Using Visual Studio 2015Nov 02, 2017. In the right pane, move the global $(PATH) entry to be above the internal path $(DevEnvDir) entries. This tells Visual Studio to look for external tools (like npm) in the global path before the internal path.
- Routing In Angular 2 With TypeScript And Visual Studio 2015 - Part OneJul 29, 2017. In this article, we are going to learn how to implement routing in Angular 2 with an example. Routing is a concept which helps users to navigate from one view to another view of the application. Similarly, routing in Angular 2 helps users to navigate from one view to another view depending upon the URL which user enters in the browser.
- Getting Started With TypeScript - Part TwoJun 22, 2017. In this article we are going to learn basics of TypeScript with visual studio 2015 Update 3.
- Getting Started With TypeScript - Part OneJun 16, 2017. In this article, we are going to learn the basics of TypeScript and its installation process with Node.js.
- Configure Angular 4 With TypeScript On A Web Application With VS 2017May 03, 2017. This article will show how to configure Angular 4 and TypeScript in ASP.Net MVC Web Application.
- Recursive Tree-View Using Angular 2 And TypeScript Until nth Level DepthMar 23, 2017. In this article, you will get to know Recursive Tree-View, using Angular 2 And TypeScript until Nth level depth.
- Debugging JavaScript And TypeScript Using Google Chrome in Visual Studio 2017Feb 27, 2017. In this article, I am going to explain how we can put breakpoint inside the Visual Studio Editor for JavaScript or TypeScript code and debug it using Google Chrome.
- ASP.NET, SignalR, Angular 2 And Typescript Real Time ClockFeb 22, 2017. In this article, we will see how we can create a real time clock, using technologies like ASP.NET, SignalR, Angular 2 and TypeScript.
- Angular 2 With TypeScript And Gulp Using Angular CLIFeb 07, 2017. This article explains how to make Angular 2 projects in a proper way, using Angular CLI.
- Class And Constructor In TypeScript Using Visual Studio CodeJan 23, 2017. In this article, you will learn about class and constructor in TypeScript, using Visual Studio Code.
- Getting Started With Angular 2.0 Using Microsoft TypeScript 2.0 Over .NET FrameworkJan 13, 2017. In this article, you will get started with Angular 2.0, using Microsoft TypeScript 2.0 over .NET Framework.
- Set Up Configuration Files For TypeScript Using Visual Studio CodeJan 11, 2017. In this article, you will learn about setting up configuration files for TypeScript, using Visual Studio Code.
- Getting Started With TypeScript Using Visual Studio CodeJan 07, 2017. In this article, you will learn about TypeScript, using Visual Studio Code.
- Separate TypeScript (TS) And JavaScript (JS) Files In Different Folders In Angular 2Dec 12, 2016. In this article, we will learn how to separate TypeScript and JavaScript files in different folders in Angular 2 applications, using Visual Studio.
- Getting Started With SharePoint Basic Field Operations Using TypeScript With InheritanceDec 10, 2016. In this article, you will learn how to perform SharePoint basic field or column (site or list scoped) operations, using TypeScript, with Object Oriented approach (including inheritance).
- SharePoint Basic SubSite Operations Using TypeScript With InheritanceNov 30, 2016. In this article, you will learn SharePoint basic SubSite Operations, using TypeScript with inheritance.
- Quick Start With TypeScript Using Visual Studio Nov 29, 2016. TypeScript is one of the modern superset of JavaScript. In this article, you will learn what TypeScript is and how to get started with TypeScript using Visual Studio.
- Getting Started With TypeScript 2.0Nov 16, 2016. In this series of articles, you are going to learn TypeScript with all the features of TypeScript 1.x and also, all the features from TypeScript 2.0. This is just the first article introducing you to what TypeScript is.
- SharePoint Programming With TypeScript - Object Oriented ApproachNov 11, 2016. In this article, you will learn about implementing class, constructor, methods in SharePoint programming, using TypeScript.
- SharePoint Programming With TypeScript - Part TwoNov 03, 2016. In this article, you will learn about implementing TypeScript program on SharePoint, using Visual Studio.
- SharePoint Programming With TypeScript - Part OneNov 01, 2016. In this article, you will learn the basics and prerequisites to be installed for SharePoint programming, using TypeScript.
- To-Do List Implementation With ASP.NET Core, TypeScript And GijgoJul 05, 2016. In this article, you will learn about To-Do list implementation with ASP.NET Core, TypeScript And Gijgo.
- What is New in TypeScript 1.3Nov 25, 2014. This article just illustrates some of the latest and useful features released by Microsoft in TypeScript 1.3.
- Get Resolution Of Local Machine in TypeScript Using ASP.NETApr 08, 2013. In this article I will explain how to get user screen resolution or local machine resolution.
- Insert Elements in TypeScript ArrayNov 27, 2012. In this article I will explain what an array is and how to insert elements in a TypeScript array with an example.
- Visual Studio 2010 TypeScript Build ToolOct 15, 2012. This shows how to use a C++ project to specify a Custom Build Tool for compiling TypeScript files automatically when the project is built.
- Do Small ASP.NET Core React Apps Really Need TypeScript?Feb 28, 2026. Discover whether TypeScript is necessary for small or internal React applications built with ASP.NET Core. A practical guide for business teams and developers.
- TypeScript for Team Collaboration in ASP.NET Core React ProjectsFeb 28, 2026. Discover how TypeScript improves collaboration, onboarding, and long term maintainability in full stack ASP.NET Core and React applications.
- Common Issues in Frontend Automation Using Playwright with TypeScriptJan 14, 2026. Tackle common hurdles in Playwright with TypeScript frontend automation. Learn to avoid flaky tests, locator issues, and CI/CD failures for robust testing.
- C# vs. TypeScript: The Right Choice for Multithreaded and Computationally Intensive ApplicationsNov 11, 2025. Explore C# vs. TypeScript for demanding applications. Discover why C# and .NET excel in multithreading, CPU-intensive tasks, and enterprise-grade performance, surpassing TypeScript's limitations.
- .NET C# vs. TypeScript: The Right Choice for Multithreaded and Computationally Intensive ApplicationsNov 11, 2025. C# excels for multithreaded, CPU-intensive tasks, leveraging the .NET runtime's parallelism. TypeScript, ideal for I/O-bound apps, lacks native parallel support. Choose C# for performance-critical backends.
- What is the Difference Between JavaScript and TypeScript?Aug 26, 2025. Explore the key differences between JavaScript and TypeScript. Learn when to use each language for web development, from small projects to large applications.
- TypeScript Cheatsheet – A Beginner-Friendly GuideAug 26, 2025. Learn TypeScript with this comprehensive cheatsheet, covering everything from basics to advanced concepts. From types and interfaces to generics and modules, simplify coding with clear examples that cater to both beginners and professionals.
- Easy way to Handle cancellation of API Requests in React with AbortSignal (TypeScript)Aug 20, 2025. I am here to address a common challenge in React + TypeScript apps: managing asynchronous HTTP requests when they become irrelevant, especially when components unmount or props change during data fetching.
- Interfaces vs Types in TypeScriptMay 29, 2025. Don’t waste another hour arguing over type vs interface. Here's what matters, what doesn't, and how to pick the right one without overthinking it.
- How to Pass Functions & Params in React + TypeScriptMay 27, 2025. You’re passing functions around like candy in your React app, but when TypeScript throws a tantrum, you start hacking with any or begging Google for help. Let’s fix that.
- Understanding Types in TypeScriptMay 15, 2025. Explore the different types in TypeScript, including primitives, union and intersection types, type aliases, interfaces, and generics.
- TypeScript: Strong Types and Where to Find Them?May 09, 2025. TypeScript is a typed version of JavaScript that helps catch errors early and improve code quality. Let me explains what it is, why it’s useful, and how to get started.
- filter(x => !!x) in typescriptDec 06, 2024. a feature of TypeScript.
- Creating Interactive Charts with Chart.js and TypeScriptNov 10, 2024. To create a responsive chart in a TypeScript application, use Chart.js—a popular library for data visualization. Set up your TypeScript project, install Chart.js and its types, and configure Webpack for bundling.
- TypeScript for advanced type inference in ReactOct 23, 2024. In this article, Ziggy Rafiq discusses advanced type inference techniques in React with TypeScript, focusing on hooks and JSX elements.
- TypeScript Object SpreadOct 10, 2024. Object spread in TypeScript allows for copying properties of objects or arrays using the spread operator (...), with later objects overwriting properties with the same name, and it can also be used to combine arrays or insert elements at specific positions.
- TypeScript Essential FeaturesOct 07, 2024. TypeScript offers essential features that enhance JavaScript development, including static typing, type inference, and support for interfaces and generics. It provides tools like classes, enums, and modules, enabling better code structure.
- TypeScript command 'tsc' not running in Terminal and PowerShellOct 06, 2024. This series of articles will discuss a specific feature for PowerShell programming.
- Build Microsoft Teams Bot Extension Using TypeScriptSep 11, 2024. Learn to build a Microsoft Teams Bot Extension with TypeScript in this guide. You'll set up your environment using Node.js and Visual Studio Code, create a bot with Teams Toolkit, and deploy it using Azure. Perfect for enhancing Teams with custom bots for improved communication and productivity.
- Routing in React JS with TypeScriptAug 08, 2024. Routing is a crucial feature for single-page applications (SPA) as it allows navigation between different views or pages without reloading the entire application. React Router is the most popular library for handling routing in React applications.
- Using Next.js with TypeScriptAug 07, 2024. Integrating TypeScript with Next.js enhances code quality by adding static types. Start by creating a Next.js project, then install TypeScript and necessary type definitions. Configure tsconfig.json, convert JavaScript files to TypeScript and handle props and state using TypeScript interfaces.
- Styling in React with Styled Components and TypeScriptJun 26, 2024. Using Styled Components and TypeScript, Ziggy Rafiq illustrates how to enhance the styling of React applications. With Styled Components, you can write CSS in JavaScript, simplifying the management of styles in a modular and reusable way. When combined with TypeScript, your code will be type-safe and easier to maintain.