
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.
workspaces-effect
Advanced tools
Effect-TS library for monorepo workspace tooling — discover workspaces, analyze dependency graphs, detect changes, parse lockfiles, and check publishability across npm, pnpm, yarn Berry, and Bun.
An Effect library for monorepo workspace tooling. Discover workspaces, analyze dependency graphs, detect changes, parse lockfiles, and check publishability across npm, pnpm, yarn Berry and Bun through composable Effect services with typed errors and platform independence.
@effect/platform abstractionseffect and @effect/platform are peer dependencies -- install them alongside the platform adapter for your runtime:
# For Node.js
npm install workspaces-effect effect @effect/platform @effect/platform-node
# For Bun
bun add workspaces-effect effect @effect/platform @effect/platform-bun
import { Effect, Option, pipe } from "effect";
import { NodeContext } from "@effect/platform-node";
import {
WorkspaceDiscovery,
WorkspacePackage,
WorkspacesLive,
} from "workspaces-effect";
const program = Effect.gen(function* () {
const discovery = yield* WorkspaceDiscovery;
const packages = yield* discovery.listPackages();
for (const pkg of packages) {
// Computed getters
if (pkg.isRootWorkspace) continue; // skip the root package
console.log(pkg.unscopedName, pkg.isPublic ? "(public)" : "(private)");
// Instance method
if (pkg.hasAnyDependencyOn("effect")) {
const version = pkg.dependencyVersion("effect");
console.log(" effect:", Option.getOrElse(version, () => "n/a"));
}
}
// Static data-last (pipeable) style
const usesReact = packages.filter(
pipe(WorkspacePackage.hasAnyDependencyOn("react")),
);
});
Effect.runPromise(
program.pipe(
Effect.provide(WorkspacesLive),
Effect.provide(NodeContext.layer),
),
);
Two composite layers cover most use cases:
WorkspacesLive -- all services except git-dependent ones (requires
FileSystem + Path)WorkspacesFullLive -- all services including change detection
(additionally requires CommandExecutor)For architecture details, API reference, and advanced usage, see docs/.
FAQs
Effect-TS library for monorepo workspace tooling — discover workspaces, analyze dependency graphs, detect changes, parse lockfiles, and check publishability across npm, pnpm, yarn Berry, and Bun.
The npm package workspaces-effect receives a total of 142 weekly downloads. As such, workspaces-effect popularity was classified as not popular.
We found that workspaces-effect 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.