
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
@turbo/workspaces
Advanced tools
@turbo/workspacesEasily convert your repo between package managers. Supports both non-monorepos and monorepos (using package manager workspaces).
Usage: @turbo/workspaces [options] [command]
Tools for working with package manager workspaces
Options:
-v, --version output the current version
-h, --help display help for command
Commands:
convert [options] [path] [package-manager] Convert project between workspace managers
summary [path] Display a summary of the specified project
help [command] display help for command
Methods are also available via the Node API:
import { convert, getWorkspaceDetails } from "@turbo/workspaces";
// detect the package manager
const project = getWorkspaceDetails({
root: process.cwd()
});
// if the package manager is not pnpm, convert to pnpm
if (project.packageManager !== "pnpm") {
await convert({
root: process.cwd(),
to: "pnpm",
options: {
dry: false,
install: true
}
});
}
For more information about Turborepo, visit turborepo.dev and follow us on X (@turborepo)!
FAQs
Tools for working with package managers
The npm package @turbo/workspaces receives a total of 518,369 weekly downloads. As such, @turbo/workspaces popularity was classified as popular.
We found that @turbo/workspaces demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.