Continue learning beyond this course with official Nest docs and ecosystem tools for databases, auth, GraphQL, and messaging.
Start With Official Docs
docs.nestjs.com is the source of truth for framework APIs and recipes. Use it to confirm decorator options, version differences (v10/v11), and package integrations.
Recipes cover Passport, Mongo, CQRS, Prisma, and more with maintained examples.
How to Use Resources Well
Framework question -> official Nest docs
Package API details -> TypeORM/Prisma/Passport docs
Bug in Nest itself -> GitHub issues / changelog
Architecture advice -> this course + measured production needs
Prefer official recipes over outdated blog posts for setup.
Check peer dependency versions when upgrading Nest major releases.
Use Discord/community forums for open-ended design questions.
Pin versions intentionally in package.json for reproducible builds.
Official and Ecosystem Resources
Links and tools worth bookmarking.
Resource
Use For
docs.nestjs.com
Framework reference and recipes
@nestjs/cli
Scaffolding and builds
TypeORM / Prisma / Mongoose docs
Persistence details
Passport docs
Auth strategies
Apollo GraphQL docs
GraphQL server behavior
Jest + Supertest
Testing Nest apps
Upgrade Notes
Before jumping major Nest versions, read the migration guide and re-run e2e suites. Breaking changes often involve peer packages (Apollo, Express types, etc.).
Starter Kits
Official samples and community boilerplates can accelerate setup, but audit security defaults (CORS, secrets, swagger exposure) before production use.
Common Mistakes
Following ancient tutorials for Nest 6/7 without checking current APIs.
Adding every Nest package under the sun without a need.
Ignoring changelogs when bumping @nestjs/* packages independently.
Key Takeaways
Official Nest docs and recipes are the primary reference.
Pair Nest docs with ORM/auth/GraphQL package docs.
Verify versions and migration notes on upgrades.
Audit boilerplates before trusting them in production.
Pro Tip
When a tutorial conflicts with docs.nestjs.com, trust the official docs for your installed major version.
You now have curated resources. Next, practice with NestJS Interview Questions.