
Research
/Security News
77 Firefox Extensions Linked to Crypto Wallet and Credential Theft
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.
@citiwave/impactmap
Advanced tools
Official SDK for impactmap.io - CRM for impact management
npm install impactmap
or
yarn add impactmap
First, set your API key for the environment you want to use:
impactmap set-key <environment> <api-key>
To list all available ImpactMap environments, you'll need to set the internal API key. You have two options:
.env file in your project root:# .env file
IMPACTMAP_INTERNAL_API_KEY=your_internal_api_key
# Linux/macOS
export IMPACTMAP_INTERNAL_API_KEY=your_internal_api_key
# Windows PowerShell
$env:IMPACTMAP_INTERNAL_API_KEY='your_internal_api_key'
Then you can list the environments:
impactmap list-tenants
This will display a table of all available environments with their names, slugs, statuses, and URLs.
The TenantsAPI class provides methods for interacting with ImpactMap tenants:
import { ImpactMap } from 'impactmap';
const client = new ImpactMap({
apiKey: 'your-api-key'
});
// List all tenants (requires IMPACTMAP_INTERNAL_API_KEY in .env or environment)
const tenants = await client.tenants.list();
// Get a specific tenant by slug
const tenant = await client.tenants.get('environment-slug');
// Example: Get all projects
const projects = await client.projects.list();
IMPACTMAP_INTERNAL_API_KEY: Required for tenant listing functionality. This is an internal API key that should be kept secure. Can be set in a .env file or as an environment variable.For detailed documentation, visit docs.impactmap.io.
MIT
FAQs
Official SDK for impactmap.io - CRM for impact management
The npm package @citiwave/impactmap receives a total of 1 weekly downloads. As such, @citiwave/impactmap popularity was classified as not popular.
We found that @citiwave/impactmap 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 uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.

Security News
NIST disclosed an unreleased AI tool called V-etalon and opened a broad inquiry into NVD modernization after years of automation plans produced no public enrichment system.

Security News
In his AI Council 2026 talk, Feross Aboukhadijeh covers recent package compromises, vulnerability discovery, and a more automated security model.