
Security News
Microsoft Releases Open Source Toolkit for AI Agent Runtime Security
Microsoft has released an open source toolkit for enforcing runtime security policies on AI agents as adoption accelerates faster than governance controls.
dev-identify
Advanced tools
Dev Identify fetches the name and profile picture associated with an email address
Dev Identify fetches the name and profile picture associated with an email address. An API is also available at devidentify.com.
npm i dev-identify
var devIdentify = require("dev-identify")
var email = "hello@devuncoded.com"
devIdentify(email)
.then(function(result) {
console.log(result)
})
Interested in hosting your own API? You can read about it here or directly download our complete API package here.
Currently, Dev Identify fetches data from:
We're working on adding more sources soon.
Dev Identify contains a utility class which you can use to create any feature you can dream of or even change the default source ordering logic.
var dev = new devIdentify.utility(optionalGooglePlusKey)
dev.identify(email) //Identifies email
dev.checkGravatar(email) //Only checks Gravatar.
dev.checkGoogle(email) //Only checks Google.
dev.checkGooglePlus(googleId) //Only checks Google Plus.
dev.validateEmail(email) //Validates email address format (BOOL)
All the dev.check functions return an associative array with a success boolean.
If the request was successful, they will also contain name, profile_picture and source key/values.
The dev.identify() function returns the same format as the dev.check functions except if the request was unsuccessful, it will also contain an error key and value.
FAQs
Dev Identify fetches the name and profile picture associated with an email address
We found that dev-identify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Microsoft has released an open source toolkit for enforcing runtime security policies on AI agents as adoption accelerates faster than governance controls.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.