
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
disposable-guerrillamail
Advanced tools
A simple wrapper on top of Guerrillamail REST API using TypeScript
A simple wrapper on top of Guerrillamail REST API using TypeScript, Promises, and Axios!
It should empower your team (development/QA) to cover E2E scenarios in more depth.
Check the Guerrillamail docs for more information here
npm i --save-dev disposable-guerrillamail
import { Email } from 'disposable-guerrillamail';
(async () => {
// Initiate a new email instance.
const tempEmail = new Email();
// Get a random email address and let the lib handle the token stuff for you.
const address = await tempEmail.createEmailAccount(); // 'dbyziheu@guerrillamailblock.com'
// You can specify a specific email to add more robustness to your tests!
// const address = await tempEmail.createEmailAccount(`Faisal`); // 'Faisal@guerrillamailblock.com'
// The initiated email is ready to receive messages...
.
.
.
// Check your inbox anytime.
const emails = await tempEmail.getLatestEmails(); // [emails]
// Check details of a certain email if you know its id.
const email = await tempEmail.getEmailDetails('1'); // email
.
.
.
// Assert, manipulate and scrape the received email for whatever you need!
})();
git clone git@github.com:Fghurayri/disposable-guerrillamail.git
cd disposable-guerrillamail
npm i
npm run dev
npm test
FAQs
A simple wrapper on top of Guerrillamail REST API using TypeScript
The npm package disposable-guerrillamail receives a total of 165 weekly downloads. As such, disposable-guerrillamail popularity was classified as not popular.
We found that disposable-guerrillamail demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.