{"id":26864246,"url":"https://github.com/patrickgdl/goto","last_synced_at":"2026-04-15T10:36:04.773Z","repository":{"id":240804020,"uuid":"803506807","full_name":"patrickgdl/goto","owner":"patrickgdl","description":"Attempt to communicate with the GoTo Connect APIs","archived":false,"fork":false,"pushed_at":"2024-05-21T18:01:32.000Z","size":124,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-19T18:40:28.767Z","etag":null,"topics":["express","nodejs","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/patrickgdl.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2024-05-20T21:18:48.000Z","updated_at":"2024-05-21T18:01:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"ec6ede51-62fc-4ab4-a485-ac5ee7e3a887","html_url":"https://github.com/patrickgdl/goto","commit_stats":null,"previous_names":["patrickgdl/goto"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/patrickgdl/goto","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickgdl%2Fgoto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickgdl%2Fgoto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickgdl%2Fgoto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickgdl%2Fgoto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/patrickgdl","download_url":"https://codeload.github.com/patrickgdl/goto/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickgdl%2Fgoto/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31837477,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T10:26:52.245Z","status":"ssl_error","status_checked_at":"2026-04-15T10:26:51.649Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["express","nodejs","typescript"],"created_at":"2025-03-31T03:38:17.599Z","updated_at":"2026-04-15T10:36:04.759Z","avatar_url":"https://github.com/patrickgdl.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Express with TypeScript\n\n## 💡 Motivation and Intentions\n\nDeveloped to streamline backend development, a solution for:\n\n- ✨ Reducing setup time for new projects.\n- 📊 Ensuring code consistency and quality.\n- ⚡ Facilitating rapid development with cutting-edge tools.\n- 🛡️ Encouraging best practices in security, testing, and performance.\n\n## 🚀 Features\n\n- 📁 Modular Structure: Organized by feature for easy navigation and scalability.\n- 💨 Faster Execution with tsx: Rapid TypeScript execution with esbuild, complemented by tsc for type checking.\n- 🌐 Stable Node Environment: Latest LTS Node version in .nvmrc.\n- 🔧 Simplified Environment Variables with Envalid: Centralized and easy-to-manage configuration.\n- 🔗 Path Aliases: Cleaner code with shortcut imports.\n- 🔄 Dependabot Integration: Automatic updates for secure and up-to-date dependencies.\n- 🔒 Security: Helmet for HTTP header security and CORS setup.\n- 📊 Logging: Efficient logging with pino-http.\n- 🧪 Comprehensive Testing: Robust setup with Vitest and Supertest.\n- 🔑 Code Quality Assurance: Husky and lint-staged for consistent quality.\n- ✅ Unified Code Style: ESLint and Prettier for a consistent coding standard.\n- 📃 API Response Standardization: ServiceResponse class for consistent API responses.\n- 🐳 Docker Support: Ready for containerization and deployment.\n- 📝 Input Validation with Zod: Strongly typed request validation using Zod.\n- 🧩 API Spec Generation: Automated OpenAPI specification generation from Zod schemas to ensure up-to-date and accurate API documentation.\n\n## 🛠️ Getting Started\n\n### Step 1: 🚀 Initial Setup\n\n- Clone the repository: `git clone https://github.com/patrickgdl/goto`\n- Navigate: `cd goto`\n- Install dependencies: `npm ci`\n\n### Step 2: ⚙️ Environment Configuration\n\n- Create `.env`: Copy `.env.template` to `.env`\n- Update `.env`: Fill in necessary environment variables\n\n### Step 3: 🏃‍♂️ Running the Project\n\n- Development Mode: `npm run dev`\n- Building: `npm run build`\n- Production Mode: Set `.env` to `NODE_ENV=\"production\"` then `npm run build \u0026\u0026 npm run start`\n\n## 📁 Project Structure\n\n```\n.\n├── api\n│   ├── healthCheck\n│   │   └── healthCheckRouter.ts\n│   └── goto\n│       ├── goto-router.ts\n├── common\n│   ├── __tests__\n│   │   ├── errorHandler.test.ts\n│   │   └── requestLogger.test.ts\n│   ├── middleware\n│   │   ├── errorHandler.ts\n│   │   └── requestLogger.ts\n│   ├── models\n│   │   └── serviceResponse.ts\n│   └── utils\n│       ├── commonValidation.ts\n│       ├── envConfig.ts\n│       └── httpHandlers.ts\n├── index.ts\n└── server.ts\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickgdl%2Fgoto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatrickgdl%2Fgoto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickgdl%2Fgoto/lists"}