TechSolution

Programing tutorial

Instal and Configure Flutter in Mac OS

Before you start Create a new Flutter project, make sure to start learn dart programing. To install and configure Flutter on macOS, follow these steps by steps: 1. Verify System…

Data Types In dart Programming

What Data Types In dart Programming? Dart, a versatile and type-safe programming language developed by Google, provides different data types to handle different types of data. Understanding these data types…

First Project in Dart Programming

Basic Dart programming

Creating a GraphQL Server with Express.js

GraphQL is a query language for APIs that provides a more efficient, powerful, and flexible alternative to traditional REST APIs. Combining GraphQL with Express.js, a popular Node.js web application framework,…

Penerapan Server Action Pada Nextjs app Router

Next.js 13+ mengintegrasikan React Actions untuk menyediakan solusi bawaan untuk server mutations. Server Actions memungkinkan Kita untuk mendefinisikan fungsi server yang asinkron dan memanggilnya langsung dari komponen React Kita Konsep…

Create a REST API with Node.js, Express JS, and MySQL Database

Setting Up The Environment First, We need to set up we environment. Create a new directory for our project, initialize a new Node.js project, and install the required packages. Here’s…

Basic and Fundamental Routing in Express.js

Express.js is a popular Node.js web application framework that provides a robust set of features for web applications. In Express.js, We can define routes using different HTTP methods such as GET, POST, PUT, DELETE,…

Create Nodejs Project with ExpressJs

Prerequisites Before starting, We need to have a local development environment for Node.js. If haven’t installed Node.js yet, first Install Nodejs in website Instal Nodejs . Step 1: Create a…

Prisma integration in Nextjs app Router

Prisma is an open-source data access layer that simplifies database management in modern applications. It offers a strong API to communicate with databases and supports various databases like PostgreSQL, MySQL,…

Menggunakan Middleware Pada Nextjs

Konsep Middleware Middleware pada Next.js 13 adalah sebuah konsep yang memungkinkan kode untuk dijalankan sebelum permintaan lain selesai. Dengan memodifikasi respons berdasarkan permintaan yang masuk, Kita dapat menulis ulang, mengarahkan,…