{"id":25591347,"url":"https://github.com/bobbyg603/unwinder-server","last_synced_at":"2026-04-09T02:03:06.455Z","repository":{"id":70064482,"uuid":"541229347","full_name":"bobbyg603/unwinder-server","owner":"bobbyg603","description":"🤖🌪🧑‍💻 TS/JS error unwinding backend built with Docker Compose","archived":false,"fork":false,"pushed_at":"2022-10-10T00:06:03.000Z","size":240,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-24T13:12:38.258Z","etag":null,"topics":["docker","docker-compose","express","nodejs","source-maps","typescript","unwind"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bobbyg603.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2022-09-25T16:09:27.000Z","updated_at":"2022-09-25T16:10:43.000Z","dependencies_parsed_at":"2023-02-21T22:00:32.430Z","dependency_job_id":null,"html_url":"https://github.com/bobbyg603/unwinder-server","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"bobbyg603/node-typescript-express-docker-starter","purl":"pkg:github/bobbyg603/unwinder-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bobbyg603%2Funwinder-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bobbyg603%2Funwinder-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bobbyg603%2Funwinder-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bobbyg603%2Funwinder-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bobbyg603","download_url":"https://codeload.github.com/bobbyg603/unwinder-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bobbyg603%2Funwinder-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31581864,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"online","status_checked_at":"2026-04-09T02:00:06.848Z","response_time":112,"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":["docker","docker-compose","express","nodejs","source-maps","typescript","unwind"],"created_at":"2025-02-21T09:51:07.470Z","updated_at":"2026-04-09T02:03:06.427Z","avatar_url":"https://github.com/bobbyg603.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Node TypeScript Express Docker Starter \n\n![node typescript express docker logos](https://user-images.githubusercontent.com/2646053/191009021-82d404d7-3d51-4dd3-ad0a-51009f89e048.png)\n\n## 📖 Definitions\n\n| Library | Description |\n| ------- | ----------- |\n| [Node.js](https://nodejs.org/en/) | JavaScript runtime built on [Chrome's V8 JavaScript engine](https://v8.dev/) |\n| [Express](https://expressjs.com/) | Minimal and flexible Node.js web application framework for creating [APIs](https://en.wikipedia.org/wiki/API). |\n| [TypeScript](https://www.typescriptlang.org/) | A [strongly typed](https://en.wikipedia.org/wiki/Strong_and_weak_typing) programming language that builds on JavaScript, giving you better tooling at any scale. |\n| [ESLint](https://eslint.org/) | [Statically analyzes](https://en.wikipedia.org/wiki/Static_program_analysis) your code to quickly find problems. |\n| [Jest](https://jestjs.io/) | A delightful JavaScript testing framework with a focus on simplicity. |\n| [Docker](https://www.docker.com/) | Package software into standardized units for development, shipment and deployment |\n\n## 🧑‍🏫 About\n\nNode-TypeScript-Express-Docker-Starter is a template repo for building a [Node.js](https://nodejs.org/en/) [APIs](https://en.wikipedia.org/wiki/API) with [TypeScript](https://www.typescriptlang.org/), [Express](https://expressjs.com/) and [Docker](https://www.docker.com/). This template contains a minimal [ESLint](https://eslint.org/) configuration to enforce coding styles, and comes equipped with [Jest](https://jestjs.io/) for unit and integration testing. Additionally, this project's API routes are structured similarly to how components are organized in an [Angular](https://angular.io/guide/file-structure) project. Controllers are grouped by the API resource they serve, and the associated unit (spec.ts) and integration (e2e.ts) files live in the same directory.\n\n## 🧑‍💻 Development\n\nInstall [Docker Desktop](https://www.docker.com/products/docker-desktop/), [VS Code](https://code.visualstudio.com/download) and [Git](https://git-scm.com/downloads). Click the green [Use this template](https://github.com/bobbyg603/express-typescript-starter/generate) button to copy this repo to your GitHub account. Once you've copied the repo, clone it to your workspace (be sure to replace my URL with the URL to the repo you generated by clicking `Use this template`):\n\n### Download and Install\n\n```sh\ngit clone https://github.com/bobbyg603/node-typescript-express-docker-starter\n```\n\nInstall the project's dependencies:\n\n```sh\nnpm i\n```\n\n### Testing\n\nRun the unit and integration tests to ensure everything installed correctly:\n\n```sh\nnpm test \u0026\u0026 npm run e2e\n```\n\nYou can also run and debug tests from within the VS Code Testing Explorer by installing [Jest Test Explorer](https://marketplace.visualstudio.com/items?itemName=kavod-io.vscode-jest-test-adapter).\n\n\u003cimg width=\"1539\" alt=\"VS Code Jest Test Explorer Debug\" src=\"https://user-images.githubusercontent.com/2646053/191792687-8ea2d4f0-e97c-4c21-8851-f7dc4fb53849.png\"\u003e\n\n### Developing\n\nIf you'd like to automatically build and restart the development sever when source files are changed you can can run the `watch` command:\n\n```sh\nnpm run watch\n```\n\nThe development server can also be started without watching the local file system or attaching the debugger:\n\n```sh\nnpm start\n```\n\nIf you'd like to attach the VS Code Debugger to a Node.js instance running on your local machine use the **Launch Program** task.\n\n\u003cimg width=\"520\" alt=\"VS Code Launch Program\" src=\"https://user-images.githubusercontent.com/2646053/191792797-08f21fca-be5a-488b-b4f0-7c47b4a312ef.png\"\u003e\n\nThe VS Code Debugger can also be attached to a Node.js instance running inside a Docker container via the **Docker: Node.js Launch** task.\n\n\u003cimg width=\"520\" alt=\"Docker Node JS Launch\" src=\"https://user-images.githubusercontent.com/2646053/191792862-69c1aafd-6363-46ad-a113-3596c6d98024.png\"\u003e\n\nThe development server should begin listening for web requests. If you navigate to http://localhost:3000 in your browser you should see something that resembles the following:\n\n\u003cimg width=\"1728\" alt=\"Development Server Running\" src=\"https://user-images.githubusercontent.com/2646053/191793260-95605ff2-4cb0-464a-b526-1f390e2707f7.png\"\u003e\n\n### Contributing\n\nIf you believe that this example can be improved, please open an [issue](https://github.com/bobbyg603/node-typescript-express-docker-starter/pulls) or submit a [pull request](https://github.com/bobbyg603/node-typescript-express-docker-starter/pulls)! \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbobbyg603%2Funwinder-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbobbyg603%2Funwinder-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbobbyg603%2Funwinder-server/lists"}