Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gopherhq

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gopherhq

Gopher Email API client for the browser and node.js

  • 0.0.22-beta
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Gopher API JS Client (Preview)

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

Usage

Quick example:

npm install gopherhq
const var Gopher = require('gopherhq');

// initialize
const gopherClient = new Gopher({clientId: 'YOUR_EXTENSIONS_CLIENT_ID'});
gopherClient.setAccessToken('YOUR_OAUTH2_ACCESS_TOKEN');

// create a task
const 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.
const res = gopherClient.createTask(task)
	.then(function(res) {
		console.log(res);
	})
	.catch(function(err) {
		console.log(err);
	});

// along with async/await magic, of course ✨
const 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.

Examples

Debugging

Set the env variable DEBUG=gopherhq to log debugging information.

Contributions

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.
  • See comment in gopherTestUtils.js about mocking network requests.
  • Make sure to run npm run build to rebuild the lib.

License

MIT

FAQs

Package last updated on 18 Oct 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc