Online Preparation for loksewa Tayari
“लोकसेवा तयारी ” means the preparation of examinations for various government posts conducted by the Public Service Commission Nepal. The Public Service Commission is an important body recognized by the Constitution of Nepal, whose main objective is to select qualified and competent people for government service. The exam depends on the place where candidates are … Read more
Best App for Face Swap in 2024
Technology is growing and changing, a digital device has become a platform to capture memories and snapshots. Introducing the “Magic AI app” is an AI face swap app where you can effortlessly swap faces in your photos with just a few taps. The purpose of the face swap app is to provide users with a … Read more
What is NPM?What is Package?What is Package.json?
First of all, NPM stands for Node Package Manager. It is also known as Ninja Pumpkin Mutants or Non-Profit Pizza Makers. Npm is a package manager for Javascript Programming Language. It is a package manager for NodeJs packages or modules if you like. It is the default package manager for the Javascript runtime environment NodeJs. … Read more
Framer Motion: What is Framer Motion? What does Framer Motion do? How does Framer Motion work?
Creating attractive and interactive user interfaces is essential in the web development world. One of the best ways to do this is by using animations. However, implementing animations can be difficult, especially if you have little programming experience. And that’s where Framer Motion comes in. In this blog post, we’ll look at what Framer Motion … Read more
Model View Controller
Model view controller is the pattern where any web app show to the client in HTML, CSS & JS format. It separates an application into three interconnection components: the model, the view, and the controller. Controller – The controller is the endpoint where the request is received. The controller acts as an intermediary between the … Read more
Next.js: A Comprehensive Guide to Building Fast and Scalable Web Applications with Server-Side Rendering and Static Site Generation
Introduction Next.js is a React-based web framework that is used for building server-side rendered (SSR) web applications. It was created by Vercel (formerly Zeit), a cloud platform for serverless deployment of web projects. Next.js provides several features that make it a popular choice for building modern web applications. Some of these features include: Overall, Next.js … Read more
How to design Entity-Relationship diagrams without sketching?
Traditionally, we are used to sketch a sample UML diagram in our paper and then draw it in our PC using different tools but now we can do it just by typing out your database model code in db.diagram.io. db.diagram.io is a database diagram designer platform to design and develop your Entity Relationship(ER) diagrams. It … Read more
What is Swagger?How to implement swagger in your NestJs project?
Swagger is an open source tool/framework which is widely used by developers for building,documenting and testing out RESTful APIs for their system. It is very useful in the development phase of a system as it helps developer use and understand each other’s APIs. To implement swagger in your NestJs project, you can go through the … Read more
Multer in NestJs
Multer is a middleware for handling multipart/form data in Node.js applications, including NestJS. It is commonly used for handling file uploads. NestJS is a popular framework for building scalable and maintainable server-side applications with TypeScript. To use Multer in a NestJS application, you can follow these steps: Step 1: Install Multer as a dependency in … Read more