
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
gmail-batch-stream
Advanced tools
A Node.js module to create batch requests for the Gmail REST API and return them as Highland.js streams.
Since I'm not actively using this package anymore, I'd appreciate if someone who is using it would take over maintenance.
The official Google API Node.js Client google/google-api-nodejs-client is missing batch processing. For processing large amounts of email through the Gmail API, batch processing greatly improves the throughput.
The module isn't very universal yet. Pull requests are welcome. For issues, feature requests or bugs that need attention please use the GitHub Issue Tracker.
This library is distributed on npm
. In order to add it as a dependency, run the following command:
$ npm install gmail-batch-stream --save
You will also need the official Google APIs Node.js Client and Highland.js to run the example below.
$ npm install googleapis --save
$ npm install highland --save
Example: Take a stream of message ids and load message headers in batches of 100. Returning a stream of messages.
'use strict';
const _h = require('highland');
const GmailBatchStream = require('gmail-batch-stream');
// Setup Gmail Batch Stream
const GBS = new GmailBatchStream(process.env.ACCESS_TOKEN); //create new instance of GmailBatchStream with provided access token
const gmail = GBS.gmail(); //return pseudo gmail api client (drop-in replacement for official Gmail API client)
//create stream of message ids to be loaded (first page of messages.list)
const messageIdStream = _h([gmail.users.messages.list({userId: 'me'})])
.pipe(GBS.pipeline(1, 5))
.pluck('messages')
.sequence()
.pluck('id');
messageIdStream
.map(messageId => gmail.users.messages.get({ userId: 'me', id: messageId, format: 'metadata' }))
.pipe(GBS.pipeline(100, 5)) //Run in batches of 100. Use quota of 5 (for users.messages.get).
.tap(_h.log)
.done(() => {
console.log('done');
process.exit();
});
Inspired by wapisasa/batchelor and pradeep-mishra/google-batch.
FAQs
Streaming interface to Gmail API using batch requests
The npm package gmail-batch-stream receives a total of 19 weekly downloads. As such, gmail-batch-stream popularity was classified as not popular.
We found that gmail-batch-stream 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.