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·42 readsUnions Discriminées
Shainil P.S.codeshaine.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
Nicolas Guillennicolascalev.hashnode.dev·Mar 24, 2024Testing reusable GitHub actionChanging content to trigger update postDiscussautomation
Nicolas Guillennicolascalev.hashnode.dev·Mar 21, 2024Update 1. Typescript backend first stepsIntroduction To get started with my backend challenge, I wanted to use TypeScript because that's the language that I am the most familiar with, of the languages that I picked to complete this challenge. I have worked with Node multiple times in the p...Discuss·38 readsbackend
Revenityaquapi.hashnode.dev·Aug 10, 2023I made Stric, an insanely fast web framework.After 6 months of continous development, I present Stric, a new framework that focused on simplicity and performance. https://gist.github.com/aquapi/ec3bcae3c0f6ca84309c908d0f51fcc7 Stric is one of the fastest JS frameworks. Here's how you will writ...Discussbunjs
Balogun Abdulquadrinonamepls.hashnode.dev·Jun 30, 2023Step By Step Guide On How to convert Reactjs to Typescript For BeginnersA few years back as a beginner, one of my biggest issues was how to successfully convert Reactjs code to Typescript without creating bugs and spending hours/days trying to rectify issues. Having fully understood the concept and a deep understanding o...Discuss·1 likeReact
Lim Woojaejaylog.hashnode.dev·Jun 1, 2023[TypeScript] Types in TypeScript & Why TypeScriptIntroduction In this article, I will be talking about the types in TypeScript. This is the first post in my TypeScript Series, so I will be talking a little bit about what is TypeScript (TS), and why you need it. According to TypeScript's website, T...Discuss·5 likes·64 readsTypeScriptTypeScript