View the Projects by pagnition

A Blog full of Web Projects

View the Projects by the navigation at the bottom of the Page sorted by Date...


.NET 8 REST API Membership system + Email verification - Azure and GH Pages

02-November-2025

.NET 8 REST API at Azure with C# using Entity Framework Core + MS SQL consuming an Angular 14 Client at GH Pages - serving as a Membership System

Note: Due to the resource limitations of the Microsoft Azure Free App Service Plan, the initial load time will be up to 30 seconds!

Unit Testing:

  • Karma + Jasmine - Used with the Angular Client

Try the demo...

The Web API was made without the ASP.NET Core Identity using custom JWT middleware

Functionality of the Web App

  • JWT authentication with Refresh Tokens
  • Refresh token rotation
  • Revoked token reuse detection
  • Email sign up and verification
  • Forgot password and reset password functionality
  • Role based authorization with two roles "User" and "Admin"
  • CRUD Account management routes with role based access control

Tech used for building the Web App

  • C#
  • The .NET 8 Web API is hosted at Azure App Service
  • DevOps by Azure App Service + Repos for the .NET 8 Web API
  • The Angular Client is hosted at GH Pages
  • DevOps by GitHub Actions + Pages for the Angular Client
  • MS SQL as the Database for both Dev + Prod
  • CORS Policy implemented by .NET
  • JWT Token for access secure routes
  • Refresh Token by HTTP only Cookie to generate new JWT Tokens
  • Swagger API documentation with routes

Next.js 13 and MongoDB Membership System

02-November-2025

Full Stack Next.js Web application with TypeScript and JWT Authentication using MongoDB and Mongoose ODM serving as a Membership System

Tech used for the Web Application

  • The Next.js Web App is hosted at Vercel Cloud using Serverless Functions
  • Node 22 at Vercel Cloud
  • Next Version 13
  • React 18
  • TypeScript
  • Joi for validation
  • Zustand for state management
  • MongoDB was the choice of NoSQL Document Database
  • Mongoose ODM ( Object Data Modeling ) used for NoSQL Document Database
  • The MongoDB is hosted at Mongo Atlas Cloud Platform

Try the demo...

The code at GitHub

Next.js was used for creating this Full Stack Web application "Static Site Generator" SSG serving as a Membership System with login and registration towards a MongoDB. The Web App is secured by HTTPS and JWT Authentication.


Next.js 15 Web App with JWT Auth

24-October-2025

A Next.js Web Application with JWT Authentication hosted at Vercel

Version used for this Web App

  • Node 22.11.0
  • Next 15.0.3
  • React 18.3.1

Try the demo...

The code at GitHub

The Next.js framework being the "Static Site Generator" was used for creating this full stack web application serving as a login system by having a client using the API Routes of Next.js getting the data / User credentials from a JSON file. The web application is secured by HTTPS and JWT Authentication.

This Next.js Jamstack Web Application is hosted at Vercel Cloud and uses continuous build and deployment


Next.js 15 Web App with Basic Auth

24-October-2025

A Next.js Web Application with Basic Authentication hosted a Netlify

Version used for this Web App

  • Node 22.11.0 ( Note: Running Node 20 at Netlify for now )
  • Next 15.0.3
  • React 18.3.1

Try the demo...

The code at GitHub

The Next.js framework being the "Static Site Generator" was used for creating this full stack web application serving as a login system by having a client using the API Routes of Next.js getting the data / User credentials from a JSON file. The web application is secured by HTTPS and Basic Authentication.

This Next.js Jamstack Web Application is hosted at Netlify Cloud and uses continuous build and deployment


Python and Django Starter Website using MySQL hosted at Vercel Cloud serving a Blog Employees and Todos

23-October-2025

Python Django and MySQL Starter Website serving a simple Blog Employees and Todos hosted at Vercel Cloud using Serverless Functions implementing DevOps by GitHub + Vercel

Try the demo...

Django is using the architectural pattern Model-View-Template (MVT) which is a derivation of the pattern Model View Control (MVC)

This Django Website is serving static content - secured by HTTPS

A simple Blog, a list of Employees and Todos demonstrates how to use Models (CRUD) by the Django Admin and display the Posts, Employees and Todos by the Frontend

The Employees and Todos are also administrated by the Frontend with CRUD functionality

The files models.py and views.py are splitted up for showing how to scale the folder structure if the Django Website should grow with a lot of views and models

Customized some of the Templates of the Django Admin Backend which display the Header and Menu

CI / CD by VS Code + GitHub + Vercel Cloud

The source code at GitHub




A Blog made with Gatsby React and GraphQL