Aniket Kadaletypescript-apis.hashnode.dev·Nov 17, 2024TypeScript Advance APIs1. Pick We know Types and Interfaces in Typescript so far. Both works similar providing the structure for our objects. However, Interfaces has additional flexibility of extending other interfaces. interface User { name: string; age: number; } fu...Discuss·1 likeTypeScript
Nilay Barotnullbyte.hashnode.dev·Nov 10, 2024Building an AI-Powered Translator Using Svelte, TypeScript, and GenAI: A Journey in InnovationRecently, I had the opportunity to work on a project, you can check it out that combined modern web technologies with the power of GenAI, resulting in a fully AI-powered translation application. This project was built using Svelte and TypeScript, and...DiscussTypeScript
Mohamed Zhiouamohamedzhioua.hashnode.dev·Oct 21, 2024🚀 Why You Should Use @ts-expect-error Over @ts-ignore in TypeScript 🚀As TypeScript developers, we often run into scenarios where the type definitions don't align with the actual data we receive. For example, you might receive a JSON object with a country field, but your type definition doesn't include it. This results...DiscussJavaScriptTypeScript
Jordan Taylorblog.justjordant.com·Oct 17, 2024Reflections on a "Dud" Project: Lessons Learned from WaitLiistAs developers, not every project we undertake becomes a resounding success. my recent venture, WaitLiist, serves as a prime example of a project that didn't quite hit the mark. However, even in failure, there are valuable lessons to be gleaned. Let's...DiscussStartups
Adarsh Mishrablog.adarsh.top·Oct 8, 2024The Ultimate MERN Stack Roadmap for DevelopersThe MERN stack is one of the most popular tech stacks for full-stack development, consisting of MongoDB, Express.js, React, and Node.js. This blog post will provide you with a detailed roadmap to mastering each technology in the MERN stack, covering ...DiscussMERN Stack
Abhishek Sharmaabhisheksharmacodes.hashnode.dev·Aug 23, 2024TypeScript's Interfaces and Classes for Type SafetyTypeScript, a superset of JavaScript, has gained immense popularity due to its ability to enhance code quality and maintainability through static type checking. Interfaces and classes play a crucial role in achieving this type safety. Let's delve int...Discussabhisheksharma
Sheraz Manzoorsherazmanzoor.hashnode.dev·Aug 8, 2024Type ✔ Vs Interface ❌: Why you should chose type over interface in typescript.I have come to a solution that you should always use types over interfaces. Let's breakdown why!! Interfaces can only specify objects, but type alias can specify objects and everything else. Let's say we have a single Address field and with type you...Discusstype alias
John Katembuejohnkat.hashnode.dev·May 23, 2024Les Unions Discriminées en TypeScriptC'est quoi une union discriminée? Une union discriminée (Le terme est correcte? je sais pas, en anglais on nous de Discriminated Union) est une fonctionnalité de TypeScript qui permet la création d'un type pouvant représenter plusieurs possibilités o...Discuss·1 like·46 readsUnions Discriminées
Shainil P Scodeshaine.hashnode.dev·May 9, 2024Is TypeScript Hard ??Before starting note that I'm a JavaScript(Node js) Developer i have somewhat experience in TypeScript. Ok!! When you start your journey of learning Web development you get to know that either you have to be good at Frontend or Backend (Full stack if...DiscussLearning TypeScript
Lokesh Sharmalokeshkavisth.hashnode.dev·Apr 5, 2024Level Up Your TypeScript: A Guide to Built-in TypesTypeScript, a superset of JavaScript, provides developers with static typing capabilities. This means you specify the data types that your variables and functions will accept, which improves code clarity, maintainability, and catches errors early in ...DiscussTypeScript