{"id":26094246,"url":"https://github.com/integeralex/disposable-email-detector-demo","last_synced_at":"2025-10-13T01:48:52.280Z","repository":{"id":279918860,"uuid":"940428298","full_name":"IntegerAlex/disposable-email-detector-demo","owner":"IntegerAlex","description":"Demo for disposable-email-detector NPM package","archived":false,"fork":false,"pushed_at":"2025-03-01T16:53:22.000Z","size":36,"stargazers_count":5,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-04T00:36:31.887Z","etag":null,"topics":["collaborate","disposable-email","disposable-email-domains","js","nextjs","nodejs","npm","type"],"latest_commit_sha":null,"homepage":"https://disposable-email-detector-demo.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/IntegerAlex.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2025-02-28T06:45:31.000Z","updated_at":"2025-03-31T14:07:59.000Z","dependencies_parsed_at":"2025-02-28T14:19:20.485Z","dependency_job_id":"41790c19-ab7f-4c5d-abc8-f7ec808da07a","html_url":"https://github.com/IntegerAlex/disposable-email-detector-demo","commit_stats":null,"previous_names":["integeralex/disposable-email-detector-demo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/IntegerAlex/disposable-email-detector-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntegerAlex%2Fdisposable-email-detector-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntegerAlex%2Fdisposable-email-detector-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntegerAlex%2Fdisposable-email-detector-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntegerAlex%2Fdisposable-email-detector-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IntegerAlex","download_url":"https://codeload.github.com/IntegerAlex/disposable-email-detector-demo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IntegerAlex%2Fdisposable-email-detector-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279013906,"owners_count":26085326,"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","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"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":["collaborate","disposable-email","disposable-email-domains","js","nextjs","nodejs","npm","type"],"created_at":"2025-03-09T12:50:49.613Z","updated_at":"2025-10-13T01:48:52.257Z","avatar_url":"https://github.com/IntegerAlex.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Disposable Email Detector Demo\n\n[![Next.js](https://img.shields.io/badge/Next.js-14.0-black?style=flat\u0026logo=next.js)](https://nextjs.org/)\n[![TypeScript](https://img.shields.io/badge/TypeScript-5.0-blue?style=flat\u0026logo=typescript)](https://www.typescriptlang.org/)\n[![Tailwind CSS](https://img.shields.io/badge/Tailwind_CSS-3.0-38B2AC?style=flat\u0026logo=tailwind-css)](https://tailwindcss.com/)\n[![NPM Package](https://img.shields.io/badge/NPM-disposable--email--detector-red?style=flat\u0026logo=npm)](https://www.npmjs.com/package/disposable-email-detector)\n[![License](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n\nA demonstration web application showcasing the functionality of the [disposable-email-detector] npm package. \nThis tool helps identify disposable/temporary email addresses in real-time.\n\nNPM Package: https://www.npmjs.com/package/disposable-email-detector \n\nFEATURES\n--------\n* Real-time email validation\n* Simple and intuitive user interface\n* Server-side email checking\n* Responsive design\n* Loading states and error handling\n* Clear visual feedback\n\nTECH STACK\n----------\n* Next.js 14\n* TypeScript\n* Tailwind CSS\n* disposable-email-detector\n\nINSTALLATION\n-----------\n# Clone the repository\ngit clone https://github.com/IntegerAlex/disposable-email-detector-demo\n\n# Navigate to project directory\ncd disposable-email-detector-demo\n\n# Install dependencies\nnpm install\n\n# Start the development server\nnpm run dev\n\nUSAGE\n-----\n1. Visit the application in your browser\n2. Enter an email address in the input field\n3. Click \"Check Email\"\n4. Get instant feedback on whether the email is disposable\n\nAPI ENDPOINT\n-----------\nThe application exposes a simple API endpoint:\n\nPOST /api/checkEmail\nContent-Type: application/json\n\nRequest body:\n{\n  \"email\": \"test@example.com\"\n}\n\nResponse:\n{\n  \"isDisposable\": true|false\n}\n\nEXAMPLE\n-------\nconst response = await fetch('/api/checkEmail', {\n  method: 'POST',\n  headers: { 'Content-Type': 'application/json' },\n  body: JSON.stringify({ email: 'test@mailinator.com' })\n});\n\nconst data = await response.json();\n// data.isDisposable will be true for disposable emails\n\nCONTRIBUTING\n-----------\nContributions, issues, and feature requests are welcome! \nFeel free to check the issues page: https://github.com/IntegerAlex/disposable-email-detector/issues\n\nLICENSE\n-------\nThis project is GPL-3.0 licensed.\n\n\nAUTHOR\n------\nAkshat Kotpalliwar\nPortfolio: https://realtalkportfolio.vercel.app/\nGitHub: https://github.com/IntegerAlex\n\nACKNOWLEDGMENTS\n--------------\n* disposable-email-detector npm package\n* Next.js team for the amazing framework\n* Tailwind CSS for the utility-first CSS framework\n\n-------------------\nIf you found this helpful, please star the repository!\n\nNPM Package: https://www.npmjs.com/package/disposable-email-detector \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintegeralex%2Fdisposable-email-detector-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fintegeralex%2Fdisposable-email-detector-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintegeralex%2Fdisposable-email-detector-demo/lists"}