{"id":19476590,"url":"https://github.com/daemonraco/disposable-email-reader","last_synced_at":"2026-05-12T20:18:03.887Z","repository":{"id":91512826,"uuid":"97262238","full_name":"daemonraco/disposable-email-reader","owner":"daemonraco","description":"A simple wrapper for some disposable email APIs.","archived":false,"fork":false,"pushed_at":"2017-07-17T14:43:00.000Z","size":23,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-25T16:25:48.550Z","etag":null,"topics":["disposable-email","maildrop","nodejs"],"latest_commit_sha":null,"homepage":null,"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/daemonraco.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":"2017-07-14T18:28:25.000Z","updated_at":"2017-11-15T07:46:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"a4e02f80-97ee-4e79-9117-8f64a6c178e0","html_url":"https://github.com/daemonraco/disposable-email-reader","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/daemonraco/disposable-email-reader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daemonraco%2Fdisposable-email-reader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daemonraco%2Fdisposable-email-reader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daemonraco%2Fdisposable-email-reader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daemonraco%2Fdisposable-email-reader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daemonraco","download_url":"https://codeload.github.com/daemonraco/disposable-email-reader/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daemonraco%2Fdisposable-email-reader/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32955232,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-12T09:19:52.626Z","status":"ssl_error","status_checked_at":"2026-05-12T09:17:33.438Z","response_time":102,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["disposable-email","maildrop","nodejs"],"created_at":"2024-11-10T19:41:00.336Z","updated_at":"2026-05-12T20:18:03.863Z","avatar_url":"https://github.com/daemonraco.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Disposable Email Reader\nA simple wrapper for some disposable email APIs. At the moment it supports:\n* [Harakirimail.com](https://harakirimail.com)\n* [MailDrop.cc](https://www.maildrop.cc)\n* [Mailinator.com](http://www.mailinator.com)\n\n## Installation\nThis module uses NPM and can be added to your project running this command\n\u003enpm install disposable-email-reader --save\n\n## How to use it\nThis is an example of its usage:\n```js\n//\n// Loading library.\nvar reader = require('disposable-email-reader');\n//\n// Creating a manager for a specific email.\nvar myInbox = new reader.HarakiriMail('mytemporaryemail');\n//\n// Listing all emais.\nmyInbox.list().subscribe(listResponse =\u003e {\n  //\n  // Walking over each email.\n  let list = listResponse.list();\n  for (let entryKey in list) {\n    let entry = list[entryKey];\n    //\n    // Retrieving an email.\n    myInbox.email(entry.id).subscribe(emailResponse =\u003e {\n      console.log(\"\\nFrom: %s\\nSubject: %s\\n\", emailResponse.from(), emailResponse.subject());\n      console.log(\"%s\\n\", emailResponse.body());\n    });\n  }\n});\n```\n\nIf you want to use something else instead of _HarakiriMail_, try one of these:\n*  _MailDrop_:\n```js\nvar myInbox = new reader.MailDrop('mytemporaryemail');\n```\n*  _Mailinator_:\n```js\nvar myInbox = new reader.Mailinator('mytemporaryemail');\n```\n\n### Paging\nIf you want to get only 5 emails, but starting from the third page, you can do\nsomething like this:\n```js\nmyInbox.list(10, 5).subscribe(list =\u003e {\n    // ... my code\n});\n```\n\n__Note__: These options may not be supported by certain services.\n\n## Licence\nMIT \u0026copy; [Alejandro Dario Simi](http://daemonraco.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaemonraco%2Fdisposable-email-reader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaemonraco%2Fdisposable-email-reader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaemonraco%2Fdisposable-email-reader/lists"}