{"id":50733301,"url":"https://github.com/theprojectsx/nestjs_starter_pack","last_synced_at":"2026-06-10T11:01:15.752Z","repository":{"id":336993346,"uuid":"1115298950","full_name":"TheProjectsX/nestjs_starter_pack","owner":"TheProjectsX","description":"Nest JS backend starter pack with TypeScript + Prisma + MongoDB setup","archived":false,"fork":false,"pushed_at":"2026-05-21T05:08:22.000Z","size":4789,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-21T11:55:05.861Z","etag":null,"topics":["backend","mongodb","nestjs","prisma","stripe","typescirpt"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TheProjectsX.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-12T16:31:56.000Z","updated_at":"2026-05-21T05:08:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/TheProjectsX/nestjs_starter_pack","commit_stats":null,"previous_names":["theprojectsx/nestjs_starter_pack"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TheProjectsX/nestjs_starter_pack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheProjectsX%2Fnestjs_starter_pack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheProjectsX%2Fnestjs_starter_pack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheProjectsX%2Fnestjs_starter_pack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheProjectsX%2Fnestjs_starter_pack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheProjectsX","download_url":"https://codeload.github.com/TheProjectsX/nestjs_starter_pack/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheProjectsX%2Fnestjs_starter_pack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34149132,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backend","mongodb","nestjs","prisma","stripe","typescirpt"],"created_at":"2026-06-10T11:01:14.071Z","updated_at":"2026-06-10T11:01:15.746Z","avatar_url":"https://github.com/TheProjectsX.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 NestJS Starter Pack\n\nA professional, feature-rich NestJS boilerplate designed for scalability and rapid development. This starter pack comes pre-configured with essential tools and integrations to help you jumpstart your backend projects.\n\n---\n\n## Key Features\n\n- **Secure \u0026 Scalable**: Pre-configured with Helmet, CSRF protection, and Throttling.\n- **Database Ready**: Integrated with **Prisma ORM** for seamless database management.\n- **robust Auth**: Complete authentication system using **Passport**, **JWT**, and **Bcrypt**.\n- **API Documentation**: Custom Swagger spec generation script and Postman collection support.\n- **Email Services**: Built-in support for **SendGrid**, **Resend**, and **Nodemailer**.\n- **Cloud Storage**: Ready-to-use integrations for **AWS S3** and **Cloudinary**.\n- **Payments**: Fully integrated **Stripe** service for handling transactions and webhooks.\n- **Real-time**: **Socket.io** integration for real-time communication.\n- **Best Practices**: Pre-configured with **ESLint**, **Prettier**, and strict TypeScript rules.\n\n---\n\n## Tech Stack\n\n- **Framework**: [NestJS](https://nestjs.com/) v11\n- **Language**: [TypeScript](https://www.typescriptlang.org/)\n- **ORM**: [Prisma](https://www.prisma.io/)\n- **API Spec**: [Swagger / OpenAPI](https://swagger.io/)\n- **Payment**: [Stripe](https://stripe.com/)\n- **Storage**: [AWS S3](https://aws.amazon.com/s3/), [Cloudinary](https://cloudinary.com/)\n- **Notifications**: [Nodemailer](https://www.npmjs.com/package/nodemailer), [SendGrid](https://sendgrid.com/), [Resend](https://resend.com/), [Brevo](https://brevo.com.com/)\n\n---\n\n## Getting Started\n\n### 1. Clone \u0026 Install\n\n```bash\ngit clone https://github.com/TheProjectsX/nestjs_starter_pack.git\ncd nestjs_starter_pack\nnpm install\n```\n\n### 2. Environment Setup\n\nCopy the example environment file and fill in your credentials:\n\n```bash\ncp .env.example .env\n```\n\n### 3. Database Migration\n\n```bash\nnpx prisma migrate dev\nnpx prisma generate\n```\n\n### 4. Run the Application\n\n```bash\n# Development\nnpm run dev\n\n# Production\nnpm run build\nnpm run start:prod\n```\n\n---\n\n## 📖 Useful Scripts\n\n| Script                     | Description                                          |\n| :------------------------- | :--------------------------------------------------- |\n| `npm run dev`              | Starts the application in watch mode.                |\n| `npm run build`            | Compiles the TypeScript code to JavaScript.          |\n| `npm run lint`             | Runs ESLint to find and fix code style issues.       |\n| `npm run generate:swagger` | Builds the app and generates `swagger-spec.json`.    |\n| `npm run generate:postman` | Converts the Swagger spec into a Postman collection. |\n| `npm run check`            | Runs linting, formatting, and building in one go.    |\n\n---\n\n## Project Structure\n\n```text\nsrc/\n├── app/            # Main application module and controller\n├── common/         # Global guards, filters, pipes, and decorators\n├── config/         # Environment configuration\n├── core/           # Core services (Stripe, S3, Email, etc.)\n├── modules/        # Feature modules (Auth, Profile, etc.)\n└── main.ts         # Application entry point\n```\n\n---\n\n## Support\n\nCreated and maintained by **TheProjectsX**.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheprojectsx%2Fnestjs_starter_pack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheprojectsx%2Fnestjs_starter_pack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheprojectsx%2Fnestjs_starter_pack/lists"}