
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@bootstrapp/cli
Advanced tools
A modular, platform-agnostic development tool for building web applications.
npm install -g bootstrapp
bootstrapp
bootstrapp ./my-project
bootstrapp new basic my-app
bootstrapp new react my-react-app
bootstrapp new electron my-electron-app
bootstrapp generate component Button
bootstrapp generate page Dashboard
bootstrapp generate api users
bootstrapp electron ./my-electron-app
bootstrapp electron:build
import * as adapter from '@bootstrapp/cli/adapter';
import { discoverCliPackages, loadPackageTasks } from '@bootstrapp/cli/utils/package-discovery';
import { registerHandler, handleRequest } from '@bootstrapp/cli/handlers';
// Discover CLI packages in a project
const packages = await discoverCliPackages(adapter, '/path/to/project');
// Load and register tasks from packages
await loadPackageTasks(packages, adapter, (task) => {
console.log('Registered task:', task.name);
});
// Register a custom HTTP handler
registerHandler({
name: 'my-handler',
match: (pathname, method) => pathname === '/api/custom',
handle: async (req, res, context) => {
res.writeHead(200, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({ success: true }));
return true;
},
});
AGPL-3.0
FAQs
Bootstrapp CLI tool - minimal loader with plugin system
We found that @bootstrapp/cli demonstrated a healthy version release cadence and project activity because the last version was released less than 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.