{"id":18594370,"url":"https://github.com/figaarillo/noderplate","last_synced_at":"2026-04-18T06:33:14.595Z","repository":{"id":243599300,"uuid":"630548604","full_name":"Figaarillo/noderplate","owner":"Figaarillo","description":"Noderplate is a boilerplate for Node.js projects","archived":false,"fork":false,"pushed_at":"2026-03-26T15:03:31.000Z","size":882,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-26T19:00:42.183Z","etag":null,"topics":["clean-architecture","ddd","docker","fastify","hexagonal-architecture","husky","nodejs","typeorm","typescript"],"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/Figaarillo.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}},"created_at":"2023-04-20T16:03:31.000Z","updated_at":"2026-03-26T15:05:54.000Z","dependencies_parsed_at":"2024-06-10T04:43:20.230Z","dependency_job_id":"0cacaccf-6c9e-4a80-8440-3c42c0a30156","html_url":"https://github.com/Figaarillo/noderplate","commit_stats":null,"previous_names":["figaarillo/noderplate"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/Figaarillo/noderplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Figaarillo%2Fnoderplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Figaarillo%2Fnoderplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Figaarillo%2Fnoderplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Figaarillo%2Fnoderplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Figaarillo","download_url":"https://codeload.github.com/Figaarillo/noderplate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Figaarillo%2Fnoderplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31959880,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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":["clean-architecture","ddd","docker","fastify","hexagonal-architecture","husky","nodejs","typeorm","typescript"],"created_at":"2024-11-07T01:15:21.428Z","updated_at":"2026-04-18T06:33:14.574Z","avatar_url":"https://github.com/Figaarillo.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Noderplate\n\nNoderplate is a boilerplate for Node.js projects, providing a well-structured foundation for building scalable and maintainable applications. It includes a setup with TypeORM, Fastify, and other essential tools for development.\n\n## Features\n\n- **[TypeORM Integration](https://typeorm.io/)**: Simplifies database interactions with a TypeScript ORM.\n- **[Fastify](https://fastify.dev/)**: A high-performance framework for Node.js.\n- **Modular Architecture**: Clean separation of concerns with a well-defined structure.\n- **Environment Configuration**: Managed via dotenv.\n- **TypeScript**: Strongly typed development environment.\n- **Pre-configured Tooling**: Includes ESLint, Prettier, Husky, and more for code quality and consistency.\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js (\u003e= 14.x)\n- pnpm (\u003e= 6.x)\n- Docker (for database setup)\n\n### Installation\n\n1. Clone the repository:\n    ```sh\n    git clone https://github.com/Figaarillo/noderplate.git\n    cd noderplate\n    ```\n\n2. Install dependencies:\n    ```sh\n    pnpm install\n    ```\n\n3. Set up environment variables:\n    ```sh\n    cp .env.dev .env\n    # Update .env with your configuration\n    ```\n\n4. Run the database using Docker:\n    ```sh\n    docker-compose up -d\n    ```\n\n### Development\n\nTo start the development server:\n```sh\npnpm run dev\n```\n\n### Building\n\nTo build the project:\n```sh\npnpm run build\n```\n\n### Running Migrations\n\nTo generate new migrations:\n```sh\npnpm run migration:generate\n```\n\nTo run migrations:\n```sh\npnpm run migration:run\n```\n\n### Linting and Formatting\n\nTo lint the code:\n```sh\npnpm run lint\n```\n\nTo format the code:\n```sh\npnpm run prettier\n```\n\n### Testing\n\nTo run tests:\n```sh\npnpm run test\n```\n\n## Project Structure\n\n```\n.\n├── src\n│   ├── main.ts                 # Application entry point\n│   ├── shared                  # Shared modules and utilities\n│   │   ├── config\n│   │   ├── domain\n│   │   └── utils\n│   └── user                    # User domain-related modules\n│       ├── aplication\n│       ├── domain\n│       └── infrastructure\n├── docker-compose.yml          # Docker configuration\n├── package.json                # Project configuration and scripts\n└── tsconfig.json               # TypeScript configuration\n```\n\n## Contributing\n\nContributions are welcome! Please follow the [code of conduct](CODE_OF_CONDUCT.md) and submit pull requests for any enhancements or bug fixes.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffigaarillo%2Fnoderplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffigaarillo%2Fnoderplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffigaarillo%2Fnoderplate/lists"}