Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
truemail-io
Advanced tools
`
This is the official TrueMail API NodeJS wrapper. It provides helpful methods to quickly implement our API in your NodeJS applications.
This package is not suitable for use in the browser! Only use it in server side applications!
To install use the following command
$ npm install truemail-io --save
All requests to TrueMail Api required api key. To create new API credentials please go here.
const trueMail = require('truemail-io')({apiKey: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'});
// Verify an email
trueMail.single.check('support@truemail.io', false).then(
res => {
console.log(res);
// { result: 'valid',
// status: 'success',
// email_id: 10441490,
// fqdn: 'google.com',
// suggested_correction: '',
// verification_time: 1456 }
},
err => {
console.log(err);
}
);
For more information you can check out the /examples
directory contained within the repository or visit our official documentation here.
There a several examples contained within the /examples
directory included in this repo. To run these examples; first create a .env.js
file in the project root containing the following text (substituting in your own API key):
module.exports = {
apiKey: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
};
Once that file has been created you can run the examples with the following command, replacing the script name with the specific example you intend to run.
node ./examples/single-verify.js
`
FAQs
An API wrapper for the TrueMail API
The npm package truemail-io receives a total of 15 weekly downloads. As such, truemail-io popularity was classified as not popular.
We found that truemail-io 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.