Continuing our last blog post, this time we’ll start by creating the backend services that our project requires. For this we’ll use Fastify. So create an empty dir and initialize npm on it:
mkdir backend
cd backend
npm init -y
npm i fastify
Continuing our last blog post, this time we’ll start by creating the backend services that our project requires. For this we’ll use Fastify. So create an empty dir and initialize npm on it:
mkdir backend
cd backend
npm init -y
npm i fastify