
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
@chargebee/chargebee-apps-libs
Advanced tools
Library implementations for the Chargebee Apps CLI — local development, sandbox execution, logging, configuration, and the web testing UI.
npm install @chargebee/chargebee-apps-libs
This package is typically installed as a dependency of @chargebee/chargebee-apps. You can also use it directly when building tools on top of the Chargebee Apps platform.
serverless-node-starter-appBasic Node.js serverless app with sample handlers, test data, and TypeScript definitions.
serverless-node-starter-app-with-iparamsSame as the starter app, plus sectioned installation parameters:
iparams.json — parameter definitions under installation_parameters.sectionsiparams.local.json — local values keyed by section namepayload.iparams.<section>.<param>See templates/serverless-node-starter-app-with-iparams/README.md for the full iparams schema and examples.
import {
ConfigLoader,
createCBPublicLogger,
PublicSandboxWrapper,
} from '@chargebee/chargebee-apps-libs';
import {
CBFileSystem,
CBProcess,
DependencyManager,
ManifestValidator,
PackageValidator,
} from '@chargebee/chargebee-apps-shared';
const configLoader = new ConfigLoader();
const allowedModules = configLoader.loadAllowedModules();
const fileSystem = new CBFileSystem();
const processService = new CBProcess();
const packageValidator = new PackageValidator(fileSystem);
const manifestValidator = new ManifestValidator(allowedModules);
const dependencyManager = new DependencyManager(fileSystem);
const manifest = manifestValidator.validateFile('./my-app/manifest.json');
await dependencyManager.ensureDependencies('./my-app', manifest);
const logger = createCBPublicLogger(fileSystem, processService, './my-app');
const sandbox = new PublicSandboxWrapper(
allowedModules,
fileSystem,
packageValidator,
dependencyManager,
manifestValidator
);
const result = await sandbox.execute('./my-app', { event: eventData }, logger);
@chargebee/chargebee-apps-shared — shared interfaces, validators, and utilitiesdotenv — environment variable loading for local development@chargebee/chargebee-apps — CLI for creating, running, and packaging apps@chargebee/chargebee-apps-shared — shared types and core utilitiesMIT
FAQs
Public library implementations for Chargebee Apps CLI
We found that @chargebee/chargebee-apps-libs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.