RGRahul Garudincareerpath.hashnode.dev004) Typescript Interfaces and Types1d ago · 3 min read · Interfaces in TypeScriptAn interface defines the structure of an object. It is commonly used in,i) React Propsii) API response modelsiii) Class contractsiv) Reusable object structures interface User {Join discussion
RGRahul Garudincareerpath.hashnode.dev003) Typescript Functions1d ago · 2 min read · Function Typing in TypeScripti) Basic Function Typing function add(a: number, b: number): number { return a + b; } console.log(add(10, 20)); ii) Arrow Function Typing const multiply = (a: number, Join discussion
RGRahul Garudincareerpath.hashnode.dev0042) SSR, CSR in React4d ago · 3 min read · Client-Side Rendering (CSR)In CSR: The browser downloads JavaScript first, and JavaScript generates the HTML UI in the browser. The server mainly sends: Minimal HTML CSS JavaScript bundle. Browser ReqJoin discussion
RGRahul Garudincareerpath.hashnode.dev0015) Environment Variables & ConfigMay 5 · 2 min read · Configuration in Node.js is one of those areas that looks simple at first (“just use environment variables”), but becomes critical as your app scales, moves across environments, and handles secrets seJoin discussion
RGRahul Garudincareerpath.hashnode.dev0014) Node Path ModuleMay 4 · 2 min read · IntroductionThe path module in Node.js is a core utility module used to work with file and directory paths safely and consistently across different operating systems (Windows, Linux, macOS).👉 It helpJoin discussion