
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.
@savvy-web/github-action-effects
Advanced tools
Effect-based utility library for building robust, well-logged, and schema-validated GitHub Actions.
Composable Effect services for building GitHub Actions with schema-validated inputs, structured logging, and GitHub API operations -- zero @actions/* dependencies.
@actions/* packagesConfig API with built-in parsing and defaultsnpm install @savvy-web/github-action-effects effect @effect/platform @effect/platform-node
import { Config, Effect } from "effect";
import { Action, ActionOutputs } from "@savvy-web/github-action-effects";
const program = Effect.gen(function* () {
const name = yield* Config.string("package-name");
const outputs = yield* ActionOutputs;
yield* outputs.set("result", `checked ${name}`);
});
Action.run(program);
Action.run provides ActionsRuntime.Default (ConfigProvider, Logger, core services, and Node.js platform layers), catches errors, and sets the workflow exit status automatically.
For service reference, architecture, testing guides, and advanced usage, see docs/.
FAQs
Effect-based utility library for building robust, well-logged, and schema-validated GitHub Actions.
We found that @savvy-web/github-action-effects 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.