{"id":20400987,"url":"https://github.com/xcfio/url-shortener","last_synced_at":"2026-04-07T22:31:08.975Z","repository":{"id":246613770,"uuid":"821639708","full_name":"xcfio/url-shortener","owner":"xcfio","description":"A Modern URL Shortener built with Fastify 5, TypeScript 5, and Node.js 24","archived":false,"fork":false,"pushed_at":"2025-12-12T14:20:22.000Z","size":3598,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-14T05:37:15.563Z","etag":null,"topics":["backend","expressjs","netlify","nodejs","postgres","postgresql","typescript","url-shortener"],"latest_commit_sha":null,"homepage":"","language":"JSON","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xcfio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-06-29T03:09:34.000Z","updated_at":"2025-12-12T14:20:20.000Z","dependencies_parsed_at":"2024-06-29T04:40:53.899Z","dependency_job_id":"6834c708-911a-4ed7-b3dc-ec0206c4cb59","html_url":"https://github.com/xcfio/url-shortener","commit_stats":null,"previous_names":["xcfio/url-shortener"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/xcfio/url-shortener","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xcfio%2Furl-shortener","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xcfio%2Furl-shortener/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xcfio%2Furl-shortener/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xcfio%2Furl-shortener/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xcfio","download_url":"https://codeload.github.com/xcfio/url-shortener/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xcfio%2Furl-shortener/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31532153,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["backend","expressjs","netlify","nodejs","postgres","postgresql","typescript","url-shortener"],"created_at":"2024-11-15T04:47:26.932Z","updated_at":"2026-04-07T22:31:08.970Z","avatar_url":"https://github.com/xcfio.png","language":"JSON","funding_links":["https://www.patreon.com/xcfio"],"categories":[],"sub_categories":[],"readme":"# URL Shortener\n\n[![Code Test](https://github.com/xcfio/url-shortener/actions/workflows/test.yaml/badge.svg)](https://github.com/xcfio/url-shortener/actions/workflows/test.yaml)\n[![Node.js Version](https://img.shields.io/badge/node-24.x-brightgreen.svg)](https://nodejs.org/)\n[![License](https://img.shields.io/github/license/xcfio/url-shortener)](https://opensource.org/license/apache-2-0)\n[![Fastify](https://img.shields.io/badge/Fastify-5.x-202020?logo=fastify)](https://www.fastify.io/)\n[![TypeScript](https://img.shields.io/badge/TypeScript-5.x-blue?logo=typescript)](https://www.typescriptlang.org/)\n[![Package Manager](https://img.shields.io/badge/pnpm-latest-orange?logo=pnpm)](https://pnpm.io/)\n[![Support on Patreon](https://img.shields.io/badge/Sponsor-Patreon-red?logo=patreon)](https://www.patreon.com/xcfio)\n[![Time](https://wakatime.com/badge/user/80f5dbf4-7bff-4748-82c6-2a8a3f3ec1c0/project/cb1a189c-ab43-4c79-9445-88fbd40793d4.svg)](https://wakatime.com/badge/user/80f5dbf4-7bff-4748-82c6-2a8a3f3ec1c0/project/cb1a189c-ab43-4c79-9445-88fbd40793d4)\n\nA simple and fast URL shortening service built with Fastify.\n\n## Features\n\n-   Quick URL shortening\n-   Rate limiting (20 requests per minute)\n-   Simple and clean UI\n-   URL blacklist support\n\n## Installation\n\n```bash\n# Install dependencies\npnpm install\n```\n\n## Environment Variables\n\nCopy `.env.example` to `.env` and configure:\n\n```bash\n# Server configuration\nPORT=3000 # Optional, defaults to 3000\n```\n\n## Development\n\n```bash\n# Start development server\npnpm dev\n```\n\n## Production\n\n```bash\n# Build the project\npnpm build\n\n# Start production server\npnpm start\n```\n\n## API Endpoints\n\n-   `GET /` - Web interface\n-   `POST /` - Create shortened URL\n-   `GET /:code` - Redirect to original URL\n-   `GET /status` - API health check\n\n## License\n\nLicensed under the Apache License, Version 2.0. See [LICENSE](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxcfio%2Furl-shortener","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxcfio%2Furl-shortener","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxcfio%2Furl-shortener/lists"}