Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
@domclick/super-rush
Advanced tools
Super Rush — is a handy CLI-tool that allows you to link packages across multiple Rush monorepos, effectively merging multiple monorepos into a one big virtual monorepo.
Install Super Rush globally using npm:
npm i -g @domclick/super-rush
Super Rush reads config super-rush.json
from user's home directory.
This config should contain a list of all Rush monorepos that you want to manage with the tool and the links between them:
{
"projects": [
{
"name": "project-1",
"path": "/home/john/projects/project-1",
"link": ["project-2"]
},
{
"name": "project-2",
"path": "/home/john/projects/project-2"
}
]
}
The example config above contains two Rush monorepos with packages of
project-2
being available in project-1
.
The parent monorepo could link multiple child ones, however, the recursive linking is not yet supported.
$ cd /home/john/projects/project-1
super-rush install
or super-rush update
This will install packages from both project-1
and project-2
into project-1
using linking.
You can easily revert all changes using the following Rush command:
rush update --full --purge
The Super Rush CLI is a wrapper around normal Rush CLI, which passes through all command line arguments and options, but adds additional behavior.
When calling e.g. super-rush install
, Super Rush will call rush install
internally, but will intercept it's read requests of the rush.json
config file,
virtually replacing it with the rewritten config in memory that contains additional
packages from the linked monorepos.
Super Rush is not making any permanent changes to the original config in the file system.
We are always open for contributions. Feel free to submit an issue or a PR. However, when submitting a PR we will ask you to sign our CLA (Contributor License Agreement) to confirm that you have the rights to submit your contributions and to give us the rights to actually use them.
When submitting a PR our special bot will ask you to review and to sign our CLA. This will happen only once for all our GitHub repositories.
Copyright Ⓒ 2020 "Sberbank Real Estate Center" Limited Liability Company.
FAQs
CLI utility to join multiple Rush repositories
The npm package @domclick/super-rush receives a total of 1 weekly downloads. As such, @domclick/super-rush popularity was classified as not popular.
We found that @domclick/super-rush demonstrated a not healthy version release cadence and project activity because the last version was released 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.