thumbnail
How to deploy an SSR angular app on Vercel

To deploy an SSR angular app on Vercel you need to use server less functions. Each request will invoke the serverless function, wh...

thumbnail
Improve LCP on angular app

Intro Things that slow a web application are: requests Ressources loading (JS / CSS / images) API calls Files size JS / CSS files ...

thumbnail
Some optimization for an angular app

Explanation Recently I was working on a project that was using Angular 15 and there was some issues with the performance of the ap...

thumbnail
How to add Angular to a NestJs project ?

Other nestjs posts I’ve made a few posts about NestJs, you can find them here: How to update NestJs ? Setting up a NestJs pr...

thumbnail
Create an angular library

Creating the project First we will setup the project using the angular cli. Library ng new my-library-name --no-create-application...

thumbnail
Create a Code Snippet Component

While developping a dumb library called wtfui that I do for fun and to learn some stuff, I needed to create a component that would...

thumbnail
How to publish a NestJs Module to npm

Projects creation First you need to create two directory in the same folder. One for the library / module you want to publish and ...

thumbnail
How to update NestJs ?

npm update didn’t work to update nest, as this post said: https://stackoverflow.com/questions/57469252/is-there-a-recommende...

thumbnail
Setting up nestjs project

1 - Generating the project nest new <project name> Which package manager would you ❤️ to use? I choose npm cd <project na...

thumbnail
Http messages

http-server/index.ts at develop · adonisjs/http-server express/request.js at master · expressjs/express Intro First of all I want ...