Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
@ntegral/sendgrid-client
Advanced tools
A wrapper for the Twilio SendGrid Client using the SendGrid v3 Web API.
A wrapper for the Twilio SendGrid Client using the SendGrid v3 Web API.
npm install --save @ntegral/sendgrid-client @sendgrid/client
The simplest way to use @ntegral/sendgrid-client
is as follows:
import { SendGridClient } from "@ntegral/sendgrid-client";
const opts: SendGridClientOptions = {
apiKey: "--- sendgrid api key ---"
};
let sgc = new SendGridClient(opts);
const mailDynamic: resource.Mail.MailData = {
personalizations: [
{
to: [
{
email: "someone@email.com",
name: "Some One"
}
],
subject: "Sample Subject",
dynamic_template_data: {
first_name: "Some",
last_name: "One"
}
}
],
from: {
email: "hi@fromemail.com",
name: "Hi Sender"
},
template_id: 'SendGrid Dynamic Template Id'
};
sgc.send(mailDynamic).then((result) => {
console.log('result from send', result);
}).catch((err) => {
console.log('error from send', err.response.body);
});
I would greatly appreciate any contributions to make this project better. Please make sure to follow the below guidelines before getting your hands dirty.
git checkout -b my-branch
)Distributed under the ISC License. See LICENSE
for more information.
Copyright © 2020 Ntegral Inc.
FAQs
Client for the SendGrid v3 Web API
The npm package @ntegral/sendgrid-client receives a total of 145 weekly downloads. As such, @ntegral/sendgrid-client popularity was classified as not popular.
We found that @ntegral/sendgrid-client 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.