Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@naturalcycles/sendgrid-client
Advanced tools
This package is part of a monorepo, please see this README for details.
This client library is used by the other SendGrid service packages to make requests to the Sendgrid v3 Web API. You can also use it independently to make custom requests to the SendGrid v3 Web API and other HTTP APIs.
To be notified when this package is updated, please subscribe to email notifications for releases and breaking changes.
Grab your API Key from the SendGrid UI.
Do not hard code your SendGrid API Key into your code. Instead, use an environment variable or some other secure means of protecting your SendGrid API Key. Following is an example of using an environment variable.
Update the development environment with your SENDGRID_API_KEY, for example:
echo "export SENDGRID_API_KEY='YOUR_API_KEY'" > sendgrid.env
echo "sendgrid.env" >> .gitignore
source ./sendgrid.env
The following recommended installation requires npm. If you are unfamiliar with npm, see the npm docs. Npm comes installed with Node.js since node version 0.8.x therefore you likely already have it.
npm install --save @naturalcycles/sendgrid-client
You may also use yarn to install.
yarn add @naturalcycles/sendgrid-client
Please see USAGE.md for all endpoint examples for the SendGrid v3 Web API.
const client = require('@naturalcycles/sendgrid-client');
client.setApiKey(process.env.SENDGRID_API_KEY);
const request = {
method: 'GET',
url: '/v3/api_keys'
};
client.request(request)
.then(([response, body]) => {
console.log(response.statusCode);
console.log(response.body);
})
sgClient.setDefaultHeader('User-Agent', 'Some user agent string');
sgClient.setDefaultRequest('baseUrl', 'https://api.sendgrid.com/');
You can overwrite the promise implementation you want the client to use. Defaults to the ES6 Promise
:
global.Promise = require('bluebird');
All updates to this library are documented in our CHANGELOG and releases. You may also subscribe to email release notifications for releases and breaking changes.
If you are interested in the future direction of this project, please take a look at our open issues and pull requests. We would love to hear your feedback.
We encourage contribution to our libraries (you might even score some nifty swag), please see our CONTRIBUTING guide for details.
Please see our troubleshooting guide for common library issues.
@naturalcycles/sendgrid-client is guided and supported by the SendGrid Developer Experience Team.
@naturalcycles/sendgrid-client is maintained and funded by SendGrid, Inc. The names and logos for @naturalcycles/sendgrid-client are trademarks of SendGrid, Inc.
FAQs
SendGrid NodeJS API client
The npm package @naturalcycles/sendgrid-client receives a total of 0 weekly downloads. As such, @naturalcycles/sendgrid-client popularity was classified as not popular.
We found that @naturalcycles/sendgrid-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.