{"id":20832031,"url":"https://github.com/amitmerchant1990/linksnatch","last_synced_at":"2025-05-08T00:43:33.999Z","repository":{"id":68113471,"uuid":"601774066","full_name":"amitmerchant1990/linksnatch","owner":"amitmerchant1990","description":"Dead simple bookmarks","archived":false,"fork":false,"pushed_at":"2025-03-18T17:21:04.000Z","size":346,"stargazers_count":187,"open_issues_count":0,"forks_count":12,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-05-08T00:43:28.054Z","etag":null,"topics":["bookmarks","frontend","indiehacking","nextjs","react","side-project","tailwindcss"],"latest_commit_sha":null,"homepage":"https://linksnatch.pages.dev","language":"JavaScript","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/amitmerchant1990.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null},"funding":{"github":"amitmerchant1990","custom":"paypal.me/AmitMerchant","patreon":"amitmerchant"}},"created_at":"2023-02-14T19:42:29.000Z","updated_at":"2025-05-01T15:08:05.000Z","dependencies_parsed_at":"2023-03-11T02:48:49.406Z","dependency_job_id":"8ec6ced3-f80f-4c6d-9d80-e722ef219f7e","html_url":"https://github.com/amitmerchant1990/linksnatch","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitmerchant1990%2Flinksnatch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitmerchant1990%2Flinksnatch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitmerchant1990%2Flinksnatch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amitmerchant1990%2Flinksnatch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amitmerchant1990","download_url":"https://codeload.github.com/amitmerchant1990/linksnatch/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252978673,"owners_count":21834911,"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":["bookmarks","frontend","indiehacking","nextjs","react","side-project","tailwindcss"],"created_at":"2024-11-18T00:09:54.412Z","updated_at":"2025-05-08T00:43:33.958Z","avatar_url":"https://github.com/amitmerchant1990.png","language":"JavaScript","funding_links":["https://github.com/sponsors/amitmerchant1990","paypal.me/AmitMerchant","https://patreon.com/amitmerchant","https://paypal.me/AmitMerchant"],"categories":[],"sub_categories":[],"readme":"\n\u003ca href=\"https://linksnatch.pages.dev\"\u003e\n  \u003cdiv align=\"center\"\u003e\n    \u003cimg alt=\"LinkSnatch\" src=\"public/icon.svg\" width=\"80\"\u003e\n  \u003c/div\u003e\n  \u003ch1 align=\"center\"\u003eLinkSnatch\u003c/h1\u003e\n\u003c/a\u003e\n\n\u003cp align=\"center\"\u003e\n  An effortlessly simple bookmarks app that lets you save the links on your device on the go.\n\u003c/p\u003e\n\n![](/public/linksnatch-cover.png)\n\n## Introduction\n\nThis is a dead simple bookmarks app that lets you save the links on your device on the go.\n\nI built [LinkSnatch](https://linksnatch.pages.dev) because I wanted something really simple to save links that I wanted to read later. I didn't want to have to sign up for an account, I didn't want to have to install a browser extension, and I didn't want to have to use a bookmarking service that was going to track me. I wanted something pretty simple that just works. And here I am!\n\nThe app is fairly opinionated and comes with a set of bare minimum features I would need:\n\n- A beautiful interface with minimal distractions.\n- Extracts URL metadata using [jsonlink.io](https://jsonlink.io) and saves it to the browser's local storage.\n- Save and search links all from a single place.\n- Dark mode.\n- It doesn't track you.\n- No signup needed.\n- It doesn't require you to install a browser extension.\n- It's open source.\n  \nI started building it to solve my own itch but later realized that someone might be in need of something like this. And so, I decided to set it free out in the wild!\n\n\u003e Read the story: [Building LinkSnatch](https://www.amitmerchant.com/building-a-bookmarks-app-with-nextjs-and-tailwind-css/)\n\n## Tech Stack\n\n- [Next.js](https://nextjs.org/)\n- [Tailwind CSS](https://tailwindcss.com/)\n- [Preline](https://preline.co/index.html)\n- [jsonlink.io](https://jsonlink.io)\n- [React Hot Toast](https://react-hot-toast.com/)\n- [AutoAnimate](https://auto-animate.formkit.com/)\n\n## Development\n\nFirst, clone the repository.\n\n```bash  \ngit clone git@github.com:amitmerchant1990/linksnatch.git\n```\n\nThen install the dependencies.\n\n```bash\nnpm install\n```\n\nGo to [jsonlink.io](https://jsonlink.io) and get your API key. Then, create a `.env.local` file in the root of the project and add the following.\n\n```env\nNEXT_PUBLIC_JSONLINK_API_KEY=add_your_api_key_here\n```\n\nFinally, run the development server.\n\n```bash\nnpm run dev\n# or\nyarn dev\n# or\npnpm dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see LinkSnatch in action.\n\n## Community\n\n- [docker-linksnatch](https://github.com/varunsridharan/docker-linksnatch) - A dockerized version of LinkSnatch directly installable from [Docker Hub](https://hub.docker.com/) and [GitHub Container Registry](https://github.com/features/packages) by [@varunsridharan](https://github.com/varunsridharan).\n- [linksnatch-docker](https://github.com/obiequack/linksnatch-docker/) - A docker setup repository for LinkSnatch by [@obiequack](https://github.com/obiequack).\n\n## Support\n\n\u003ca href=\"https://paypal.me/AmitMerchant\" target=\"_blank\"\u003e\u003cimg src=\"https://www.buymeacoffee.com/assets/img/custom_images/purple_img.png\" alt=\"Buy Me A Coffee\" style=\"height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;\" \u003e\u003c/a\u003e\n\n\u003cp\u003eOr\u003c/p\u003e \n\n[Become a GitHub Sponsor](https://github.com/sponsors/amitmerchant1990)\n\n## License\n\nMIT\n\n---\n\n\u003e [amitmerchant.com](https://www.amitmerchant.com) \u0026nbsp;\u0026middot;\u0026nbsp;\n\u003e GitHub [@amitmerchant1990](https://github.com/amitmerchant1990) \u0026nbsp;\u0026middot;\u0026nbsp;\n\u003e Twitter [@amit_merchant](https://twitter.com/amit_merchant)\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famitmerchant1990%2Flinksnatch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famitmerchant1990%2Flinksnatch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famitmerchant1990%2Flinksnatch/lists"}