
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
node-gmail-api
Advanced tools
Node module to interact with the gmail api.
Why not the google official library? Well it does too much and doesn't implement batching. Which means fetching a bunch of email is insanely painful. This module exposes a function which will query the api searching for messages and hit the google batch api to fetch all the messages that are returned.
To use this module, you'll need an oauth access token key. See more details here: https://developers.google.com/gmail/api/overview#auth_and_the_gmail_api.
You may use passport-google-oauth to get an access key for a user, then use this module to make requests on behalf of the authenticated user.
Example authentication call (cf. passport-google-oauth for more complete usage examples):
passport.use(new GoogleStrategy({
clientID: config.googleApp.clientId
, clientSecret: config.googleApp.clientSecret
, userProfileURL: 'https://www.googleapis.com/oauth2/v3/userinfo'
, callbackURL: config.baseurl + '/oauth2callback'
}
, function(accessToken, refreshToken, profile, done) {
// do your thing here
}
))
// assuming access token has already been retrieved inside variable `accessToken`
var Gmail = require('node-gmail-api')
, gmail = new Gmail(accessToken)
, s = gmail.messages('label:inbox', {max: 10})
s.on('data', function (d) {
console.log(d.snippet)
})
cf. gmail API performance guide.
var Gmail = require('node-gmail-api')
, gmail = new Gmail(accessToken)
, s = gmail.messages('label:inbox', { fields: ['id', 'internalDate', 'labelIds', 'payload']})
s.on('data', function (d) {
console.log(d.id)
})
var Gmail = require('node-gmail-api')
, gmail = new Gmail(accessToken)
, s = gmail.messages('label:inbox', {format: 'raw'})
s.on('data', function (d) {
console.log(d.raw)
})
ISC
FAQs
Interacts with the gmail api, fetching emails
We found that node-gmail-api 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.