Building Node.js Express App Using TypeScript

In this tutorial, you’ll learn how to build a Node.js Express app using TypeScript. This will be beginner level tutorial where you’ll learn how to set an express app server with a couple of routes in TypeScript. Source code from this tutorial is available on GitHub. What You’ll Create A simple express app server in TypeScript. Two routes, one will render a text and the other will render an HTML file Prerequisites Download and install Node. [Read More]

How to Fetch Data From API Server Side | Next.js | getServerSideProps

How to Make an API call from server side in Next.js using getServerSideProps

In this tutorial, you’ll see how you can make an API call from server side using getServerSideProps. Using getServerSideProps you can make an API call in the Next.js page during server side rendering.