Skip to main content

Deploying FastAPI on Azure Using VS Code Extensions

· 9 min read
Shivam Pawar
Senior Software Developer @Bridgenext

Sometimes we want to deploy an API on Azure quickly for POC (Proof of Concept) purposes, testing ideas, or sharing prototypes without setting up complex infrastructure. FastAPI, being a modern, fast web framework for building APIs with Python, is perfect for such scenarios due to its high performance, automatic API documentation, and ease of use. In this comprehensive blog post, we'll walk through deploying a simple FastAPI application to Azure App Service using the Azure extensions available in Visual Studio Code. This approach is straightforward, leverages the power of VS Code's integrated tools to streamline the process, and allows developers to focus on coding rather than infrastructure setup. By the end of this guide, you'll have a fully functional API running on Azure, accessible from anywhere.

Revisit JavaScript Quickly

· 13 min read
Shivam Pawar
Senior Software Developer @Bridgenext

JavaScript is a versatile and widely-used programming language that powers the dynamic behavior of websites and applications. This guide is crafted to help you revisit and reinforce your understanding of essential JavaScript concepts, whether you're preparing for technical interviews, enhancing your coding skills, or exploring modern web development practices. By delving into key topics such as data types, hoisting, variable declarations, and advanced features like ES6 syntax and asynchronous programming, you'll gain a deeper appreciation of JavaScript's capabilities. With practical examples and clear explanations, this guide aims to equip you with the knowledge and confidence to solve JavaScript challenges effectively.

How to Publish Your React App on Azure Static Web App Using Azure CI/CD

· 4 min read
Shivam Pawar
Senior Software Developer @Bridgenext

Are you building a React app and want to publish it using Azure? This guide will walk you through deploying your React app to Azure Static Web Apps using Azure DevOps Repos and Azure Pipelines — without GitHub.

Even if you're a beginner, don’t worry. I’ll guide you step-by-step, just like a teacher explaining things in a classroom. 😊

Setup React Application using Typescript and Webpack

· 4 min read
Shivam Pawar
Senior Software Developer @Bridgenext

In this post we will learn how to add support of TypeScript to your React Js application having webpack and babel configured.

Please note that in this post I’m going to modify previously setup React Js application to add support for TypeScript. If you haven’t yet gone through that post then please start with Setup Webpack and Babel for a React Js Application and come back to this post.

Setup Webpack And Babel for a React JS Application

· 7 min read
Shivam Pawar
Senior Software Developer @Bridgenext

Introduction

As a beginner in React.js, I used to setting up my react application using a single command line tool called create-react-app (CRA) which is a open source project developed by developers at Facebook for bootstrapping your react application and serve a simple boilerplate. But as a developer I’m always curious to understand what actually this command does ? What are the other dependencies required to serve a react application ? As a beginner I was thinking like react-scripts is the only dependency that required to build and run react app. But as I drill down more in React I get to know more about transpiler and bundler.