
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
node-constantcontact
Advanced tools
Constant Contact v2 API client for Node.js
$ npm install node-constantcontact --save
const ConstantContact = require('node-constantcontact');
const cc = new ConstantContact({
apiKey: '',
accessToken: ''
});
let req = cc.campaigns.find({ email: 'some.person@some-domain.com' });
req
.catch((err) => {})
.then((result) => {});
let req = cc.contacts.find({ email: 'test@example.org' });
req
.catch((err) => {})
.then((result) => {});
let contacts = [
// array of contact objects - see
// https://developer.constantcontact.com/docs/contacts-api/contacts-collection.html?method=POST
];
let req = cc.contacts.create(contacts, { action_by: 'ACTION_BY_OWNER' });
req
.catch((err) => {})
.then((result) => {});
let req = cc.contacts.save(contact, { action_by: 'ACTION_BY_OWNER '});
req
.catch((err) => {})
.then((result) => {});
Returns the internal instance of purest configured for Constant Contact.
let req = cc.client.get('activities').qs({ status: 'ERROR' }).request();
req
.catch((err) => {})
.then((result) => {});
Follows the pagination links in a request to load each page sequentially.
cc.paginate(
cc.contacts.find(),
(page) => {},
(err) => {},
() => {}
);
Waits for a bulk operation to complete.
FAQs
Constant Contact v2 API client for Node.js
The npm package node-constantcontact receives a total of 25 weekly downloads. As such, node-constantcontact popularity was classified as not popular.
We found that node-constantcontact 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.