
Security News
Nx npm Packages Compromised in Supply Chain Attack Weaponizing AI CLI Tools
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
js-actionnetwork
Advanced tools
A comprehensive client library, ensuring full compatibility with the ActionNetwork v2 API
ActionNetworkJS is a JavaScript library that provides a convenient interface for interacting with the ActionNetwork API. It simplifies the process of managing various resources such as fundraising pages, donations, events, campaigns, and more. The library is designed to be flexible, allowing users to integrate ActionNetwork's functionalities into their JavaScript applications seamlessly. js-actionnetwork
is designed to work with both CommonJS and ES Modules, making it suitable for a wide range of JavaScript environments.
To install ActionNetworkJS, run the following command in your project directory:
npm install js-actionnetwork
This will add ActionNetworkJS to your project's dependencies and allow you to start using the library right away.
js-actionnetwork
is compatible with both CommonJS and ES Modules.
If you are using a CommonJS environment (like Node.js with require
), you can include js-actionnetwork
in your project as follows:
const ActionNetwork = require('js-actionnetwork');
const an = ActionNetwork.init('YOUR_API_KEY');
For ES Modules (using import
syntax), you can import js-actionnetwork
like this:
import ActionNetwork from 'js-actionnetwork';
const an = ActionNetwork('YOUR_API_KEY');
Once you have initialized js-actionnetwork
with your API key, you can start using the various modules provided by the library. Here are some examples:
// Accessing individual modules
const { People, Events, Campaigns } = an;
// List all people
People.people.get().then(allPeople => {
console.log(allPeople);
});
// Create a new event
Events.event.post({ / event data / }).then(newEvent => {
console.log(newEvent);
});
// ... and so on for other modules
Refer to the ActionNetwork API documentation for detailed information on the available endpoints and data formats.
If you encounter any issues or have questions regarding js-actionnetwork
, please file an issue on the GitHub repository or contact the maintainers.
FAQs
A comprehensive client library, ensuring full compatibility with the ActionNetwork v2 API
The npm package js-actionnetwork receives a total of 0 weekly downloads. As such, js-actionnetwork popularity was classified as not popular.
We found that js-actionnetwork 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.
Security News
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.