{"id":23038803,"url":"https://github.com/kauefraga/zetashort","last_synced_at":"2026-05-01T14:33:24.507Z","repository":{"id":207812156,"uuid":"720158245","full_name":"kauefraga/zetashort","owner":"kauefraga","description":"🔗 An URL shortener. A simple and reliable solution for users + url shortening.","archived":false,"fork":false,"pushed_at":"2023-11-22T22:31:47.000Z","size":252,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T23:45:21.524Z","etag":null,"topics":["express","server","url-shortener"],"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/kauefraga.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}},"created_at":"2023-11-17T17:48:44.000Z","updated_at":"2023-11-22T22:32:19.000Z","dependencies_parsed_at":"2023-11-22T18:32:48.267Z","dependency_job_id":"b0da81a4-73af-406c-81f7-9d1c245d5005","html_url":"https://github.com/kauefraga/zetashort","commit_stats":null,"previous_names":["kauefraga/zetashort"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kauefraga/zetashort","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kauefraga%2Fzetashort","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kauefraga%2Fzetashort/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kauefraga%2Fzetashort/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kauefraga%2Fzetashort/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kauefraga","download_url":"https://codeload.github.com/kauefraga/zetashort/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kauefraga%2Fzetashort/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32501402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["express","server","url-shortener"],"created_at":"2024-12-15T18:25:30.174Z","updated_at":"2026-05-01T14:33:24.481Z","avatar_url":"https://github.com/kauefraga.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align='center'\u003e\n  \u003cimg\n    src='docs/zetashort.png'\n    alt='Zeta Short logo'\n    width='250'\n    height='250'\n  /\u003e\n  \u003cbr /\u003e\n  \u003cbr /\u003e\n  \u003cp\u003e\n    \u003cimg\n      alt=\"GitHub top language\"\n      src=\"https://img.shields.io/github/languages/top/kauefraga/zetashort\"\n    /\u003e\n    \u003cimg\n      alt=\"GitHub Repo stars\"\n      src=\"https://img.shields.io/github/stars/kauefraga/zetashort\"\n    /\u003e\n    \u003ca href=\"https://github.com/kauefraga/zetashort/commits/main\"\u003e\n      \u003cimg\n        alt=\"GitHub last commit\"\n        src=\"https://img.shields.io/github/last-commit/kauefraga/zetashort\"\n      /\u003e\n    \u003c/a\u003e\n    \u003cimg\n      alt=\"GitHub LICENSE\"\n      src=\"https://img.shields.io/github/license/kauefraga/zetashort\"\n    /\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\n---\n\n\u003e 🔗 An URL shortener. A simple and reliable solution for users + url shortening.\n\n\u003e [!IMPORTANT]\n\u003e 🚧 Work in progress\n\n### Features\n\n## ⬇️ Getting Started\n\n### How to install, build and run it\n\n1. Clone the repository\n2. Install dependencies\n3. Build and start 😉\n\n```bash\n# (1)\ngit clone https://github.com/kauefraga/zetashort.git\ncd zetashort\n\n# (2)\npnpm i --frozen-lockfile\n\n# (3)\npnpm build\npnpm start\n```\n\n### Usage\n\nHere's a quick walkthrough:\n\nWant to see a hello world?\n\n```bash\n\u003e GET /v1\n```\n\nWant to create a user?\n\n```bash\n# body { username: string, password: string }\n\u003e POST /v1/users -\u003e Token and expiresIn\n```\n\nWant to find a specific user?\n\n```bash\n\u003e GET /v1/users/:userId -\u003e User\n\u003e GET /v1/users/:username -\u003e User\n```\n\nWant to list all the stored users? (authorization required)\n\n```bash\n# authorization: bearer {token}\n\u003e GET /v1/users -\u003e Users list\n```\n\n### About the solution\n\nWhy did you choose node/typescript?\n\n\u003e I choose node/typescript because i am familiar with it. Patterns, Node, Typescript, PNPM, Express, Prisma, etc. In the future, i may create some similar solution with Golang.\n\nWhich dbms did you choose? Why? Did you consider using NoSQL?\n\n\u003e I also choose PostgreSQL ([bitnami/postgresql](https://hub.docker.com/r/bitnami/postgresql)) because of my familiarity with it. Sincerely, I didn't consider using a NoSQL database, but i would strongly recommend them because of their flexibility and performance.\n\n## 💪 How to contribute\n\nFeel free to open an [issue](https://github.com/kauefraga/zetashort/issues). I would love to read and fix the bugs you spotted.\n\nIf you want to contribute with your code, follow it:\n\n1. With the repository forked and cloned, start the development mode\n2. Develop something cool\n3. Open a pull request\n\n```bash\n# (1)\npnpm dev\n```\n\n## 📝 License\n\nThis project is licensed under the MIT License - See the [LICENSE](https://github.com/kauefraga/zetashort/blob/main/LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkauefraga%2Fzetashort","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkauefraga%2Fzetashort","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkauefraga%2Fzetashort/lists"}