Get Started

🚀 Glad you’re here! Let’s start your journey as a back-end developer 🧑‍💻.

The dependecies version for the packages are:

  • For NestJs ⇒ NestJS versions range from 9.x to 10.x inclusive. Using any version outside this range may result in compatibility issues and unexpected conflicts.

  • For Prisma ⇒ start from 5.0.0

-Ensure you have Node.js installed. You can check with:

node -v
npm -v

-Install the Nest CLI by using this command:

npm install -g @nestjs/cli

-After that, you can create a new project by using this command:

nest new my-nest-app

-And please follow this documentation steps for the configuration of Prisma:

https://www.prisma.io/docsarrow-up-right

Congratulations, now you can run the project by:

npm run start

Don't forget to create a new database depending on your project requirements.

Let us start with the packages 💻

Last updated