{"id":27039988,"url":"https://github.com/cdvel/url-shortenr","last_synced_at":"2026-04-30T00:01:26.823Z","repository":{"id":38802406,"uuid":"207550683","full_name":"cdvel/url-shortenr","owner":"cdvel","description":"✂️ URL Shortening and redirecting service using Firebase cloud functions","archived":false,"fork":false,"pushed_at":"2023-01-09T11:54:51.000Z","size":205,"stargazers_count":1,"open_issues_count":10,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-02-27T15:17:12.747Z","etag":null,"topics":["firebase","firebase-cloud-functions"],"latest_commit_sha":null,"homepage":"https://shortenr.web.app/","language":"TypeScript","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/cdvel.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}},"created_at":"2019-09-10T12:15:59.000Z","updated_at":"2020-01-08T17:00:23.000Z","dependencies_parsed_at":"2022-08-26T20:03:31.676Z","dependency_job_id":null,"html_url":"https://github.com/cdvel/url-shortenr","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdvel%2Furl-shortenr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdvel%2Furl-shortenr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdvel%2Furl-shortenr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdvel%2Furl-shortenr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cdvel","download_url":"https://codeload.github.com/cdvel/url-shortenr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247284933,"owners_count":20913690,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["firebase","firebase-cloud-functions"],"created_at":"2025-04-05T03:27:30.232Z","updated_at":"2026-04-30T00:01:21.784Z","avatar_url":"https://github.com/cdvel.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cbr /\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/cdvel/url-shortenr\"\u003e    \n  \t\u003ch3 align=\"center\"\u003e✂️ URL Shortenr\u003c/h3\u003e\n  \u003c/a\u003e\n  \u003cp align=\"center\"\u003e\n\t\tStore and resolve shortened urls Firebase\u003cbr /\u003e\n\u003c!--     \u003ca href=\"https://github.com/cdvel/url-shortenr\"\u003e\u003cstrong\u003eExplore the docs »\u003c/strong\u003e\u003c/a\u003e\n --\u003e    \u003cbr /\u003e\n    \u003cbr /\u003e\n    \u003ca href=\"https://shortenr.web.app\"\u003eView Demo\u003c/a\u003e\n    ·\n    \u003ca href=\"https://github.com/cdvel/url-shortenr/issues\"\u003eReport Bug\u003c/a\u003e\n    ·\n    \u003ca href=\"https://github.com/cdvel/url-shortenr/issues\"\u003eRequest Feature\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\n\n## Table of Contents\n\n* [About the Project](#about-the-project)\n  * [Built With](#built-with)\n* [Getting Started](#getting-started)\n  * [Prerequisites](#prerequisites)\n  * [Installation](#installation)\n* [Usage](#usage)\n* [Roadmap](#roadmap)\n* [Contributing](#contributing)\n* [License](#license)\n* [Contact](#contact)\n* [Acknowledgements](#acknowledgements)\n\n\n\n\u003c!-- ABOUT THE PROJECT --\u003e\n## About The Project\n\n\nThe classic URL shortening/redirecting service using free resources from Firebase (cloud functions, firestore, hosting). \n\n![url shortener](https://user-images.githubusercontent.com/10421005/65597591-129b4980-dfcc-11e9-953f-5ec59b6e26e2.png)\n\n\n### Built With\n\n* [Firebase](https://firebase.google.com/)\n* [Node](https://nodejs.org/)\n* [Baseguide](https://basegui.de)\n\n\n\n\u003c!-- GETTING STARTED --\u003e\n## Getting Started\n\nTo get a local copy up and running follow these simple steps.\n\n### Prerequisites\n\n* npm\n```sh\nnpm install npm@latest -g\n```\n\n* Firebase CLI\n```sh\nnpm install -g firebase-tools\n```\n\n* Login\n```sh\nfirebase login\n```\n\n### Installation\n \n1. Clone the repo\n```sh\ngit clone https:://github.com/cdvel/url-shortenr.git\n```\n2. Install NPM packages\n```sh\nnpm install\n```\n3. Create  and use your firebase project: url-shortener\n```sh\nfirebase projects:create\n$ url-shortener\n\nfirebase use url-shortener\n```\n\n4. Update unique hosting site on firebase.json (ex. https://shortenr.web.app)\n```json\n  \"hosting\": {\n    \"site\": \"shortenr\",\n\n```\n\n5. Set your authorized google email to access the shortener with\n```sh\nfirebase functions:config:set authorized.email=\"your-email@gmail.com\"\n```\n\n6. Deploy\n```sh\nfirebase deploy\n```\n\n\n\n\u003c!-- USAGE EXAMPLES --\u003e\n## Usage\n\n1. Copy and paste a long URL and click \"Shorten ✂️\"\n2. A shortened URL such as `https://shortenr.web.app/SH0RT` is generated\n3. A list of all shortened URLS can be found at https://console.firebase.google.com/u/0/project/`{your-project}`/storage\n\n\n\u003c!-- _For more examples, please refer to the [Documentation](https://shortenr.web.app)_ --\u003e\n\n\n\n\u003c!-- ROADMAP --\u003e\n## Roadmap\n\nSee the [open issues](https://github.com/cdvel/url-shortenr/issues) for a list of proposed features (and known issues).\n\n\n\n\u003c!-- LICENSE --\u003e\n## License\n\nDistributed under the Apache License. See `LICENSE` for more information.\n\n\n\n\u003c!-- CONTACT --\u003e\n## Contact\n\n[https://twitter.com/cdvel](https://twitter.com/cdvel)\n\n[https://github.com/cdvel/url-shortenr](https://github.com/cdvel/url-shortenr)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdvel%2Furl-shortenr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcdvel%2Furl-shortenr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdvel%2Furl-shortenr/lists"}