
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
easycli-core
Advanced tools
The core engine for building powerful, type-safe CLI applications with EasyCLI.
pnpm add easycli-core
commands/hello.ts:
import { defineCommand } from "easycli-core";
export default defineCommand({
description: "Say hello",
flags: {
name: { type: "string", default: "World", alias: "n" }
},
async run({ flags }) {
console.log(`Hello, ${flags.name}!`);
}
});
index.ts:
import { defineCLI } from "easycli-core";
import hello from "./commands/hello";
const cli = defineCLI({
name: "my-cli",
version: "1.0.0",
commands: {
hello
}
});
cli.run();
defineCLI(config)Creates the CLI application.
name: Name of the executable.version: Current version.commands: Object mapping command names to definitions.defineCommand(definition)Defines a command with:
description: Help text.flags: Flag definitions (type, alias, default).args: Positional argument definitions.run: Async function to execute.onInit, onExit, onError hooks for lifecycle management.FAQs
Core engine for EasyCLI
We found that easycli-core 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.