![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
blazeverify
Advanced tools
Email Verification that’s astonishingly easy and low-cost. See https://blazeverify.com for details.
This is the official node wrapper for the Blaze Verify API.
Blaze Verify is now Emailable! Please switch to using the Emailable client library: https://emailable.com/docs/api?javascript
See the Node API docs.
Install the package with:
npm install blazeverify --save
# or
yarn add blazeverify
The library needs to be configured with your account's API key which is available in your Blaze Verify Dashboard. Require it with your API key:
// require with api key
var blazeverify = require('blazeverify')('live_...')
// verify an email address
blazeverify.verify('jarrett@blazeverify.com')
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
Some email servers are slow to respond. As a result the timeout may be reached before we are able to complete the verification process. If this happens, the verification will continue in the background on our servers. We recommend sleeping for at least one second and trying your request again. Re-requesting the same verification with the same options will not impact your credit allocation within a 5 minute window.
{
message: 'Your request is taking longer than normal. Please send your request again.'
}
var emails = ['jarrett@blazeverify.com', 'support@blazeverify.com', ...]
blazeverify.batches.verify(emails)
.then(function (response) {
console.log(response.id);
});
// you can optionally pass in a callback url that we'll POST to when the
// batch is complete.
blazeverify.batches.verify(emails, 'https://blazeverify.com/'}).then(function (response) {
console.log(response.id);
});
Calling batches.status
with the batch id will return the batch's status.
This will also return the results once the batch is complete.
var id = '5cfcbfdeede34200693c4319'
blazeverify.batches.status(id)
.then(function (response) {
console.log(response);
});
Run all tests:
$ yarn install
$ yarn test
If you do not have yarn
installed, you can get it with npm install --global yarn
.
Run a single test suite without a coverage report:
$ yarn test test/verify.spec.js
Bug reports and pull requests are welcome on GitHub at https://github.com/blazeverify/blazeverify-node.
FAQs
Email Verification that’s astonishingly easy and low-cost. See https://blazeverify.com for details.
The npm package blazeverify receives a total of 0 weekly downloads. As such, blazeverify popularity was classified as not popular.
We found that blazeverify 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.