
Product
Introducing Socket MCP for Claude Desktop
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
JavaScript client for interacting with the Gopher Email API. Works in the browser and node.js.
Note: Gopher is currently in private beta. Enter your email on the Gopher Home Page to request an invitation
Quick example:
npm install gopherhq
var Gopher = require('gopherhq');
// initialize
var gopherClient = new Gopher({clientId: 'YOUR_EXTENSIONS_CLIENT_ID'});
gopherClient.setAccessToken('YOUR_OAUTH2_ACCESS_TOKEN');
// create a task
var task = {
task: {
reference_email: {
server_recipient: 'command@your-extension.gopher.email',
to: ['you@example.com'],
subject: "Test1",
html: "Test1",
}
}
}
// create a task with a callback
gopherClient.createTask(task, function(err, res) { console.log(err || res)});
// promises work, too.
let res = gopherClient.createTask(task)
.then(function(res) {
console.log(res);
})
.catch(function(err) {
console.log(err);
});
// along with async/await magic, of course ✨
let res = await gopherClient.createTask(task); //in async function
YOUR_EXTENSIONS_CLIENT_ID
– Find this in the developer portal.YOUR_OAUTH2_ACCESS_TOKEN
- Log in to your extension and copy the value from the gopherToken
cookie using something like EditThisCookie or the Chrome dev tools.test
directory for usage examples.Set the env variable DEBUG=gopherhq
to log debugging information.
Contributions are welcome. Feel free to send us an email help+gopher@humans.fut.io or create a PR. A few notes:
npm t
will watch for changes and re-run tests on save, letting you make rapid progress.gopherTestUtils.js
about mocking network requests.npm run build
to rebuild the lib.MIT
FAQs
Gopher Email API client for the browser and node.js
The npm package gopherhq receives a total of 0 weekly downloads. As such, gopherhq popularity was classified as not popular.
We found that gopherhq 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.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.