Npm integration
npm is the default package manager for JavaScript and Node.js, facilitating the…
- Provider
- npm
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 12 available
Quick start
Call Npm from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Npm's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"NPM_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Npm API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
12 actions exposed via the
Npm integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
NPM_DELETE_USER_TOKEN_LEGACY -
NPM_GET_ALL_PACKAGES_DOWNLOAD_POINT -
NPM_GET_DOWNLOAD_COUNTS_POINT -
NPM_GET_DOWNLOAD_COUNTS_RANGE_PACKAGE -
NPM_GET_DOWNLOAD_RANGE_ALL -
NPM_GET_REGISTRY_CHANGES -
NPM_GET_REGISTRY_META -
NPM_GET_VERSION_DOWNLOADS -
NPM_QUERY_BULK_SECURITY_ADVISORIES -
NPM_REGISTRY_GET_PACKAGE -
NPM_REGISTRY_GET_ROOT -
NPM_REGISTRY_SEARCH_PACKAGES
Build with Npm
Open OverSkill, describe what you want to build, and reference Npm in your prompt — the AI will wire up the integration automatically.