
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@cspotcode/cmd-shim
Advanced tools
Used in pnpm for command line application support
The cmd-shim used in pnpm to create executable scripts on Windows, since symlinks are not suitable for this purpose there.
On Unix systems, you should use a symbolic link instead.
npm install --save @zkochan/cmd-shim
cmdShim(src, to, opts?): Promise<void>Create a cmd shim at to for the command line program at from.
e.g.
const cmdShim = require('@zkochan/cmd-shim')
cmdShim(__dirname + '/cli.js', '/usr/bin/command-name')
.catch(err => console.error(err))
cmdShim.ifExists(src, to, opts?): Promise<void>The same as above, but will just continue if the file does not exist.
opts.preserveSymlinks - Boolean - if true, --preserve-symlinks is added to the options passed to NodeJS.opts.nodePath - String - sets the NODE_PATH env variable.opts.createCmdFile - Boolean - is true on Windows by default. If true, creates a cmd file.opts.createPwshFile - Boolean - is true by default. If true, creates a powershell file.const cmdShim = require('@zkochan/cmd-shim')
cmdShim(__dirname + '/cli.js', '/usr/bin/command-name', { preserveSymlinks: true })
.catch(err => console.error(err))
FAQs
Used in pnpm for command line application support
The npm package @cspotcode/cmd-shim receives a total of 0 weekly downloads. As such, @cspotcode/cmd-shim popularity was classified as not popular.
We found that @cspotcode/cmd-shim demonstrated a not healthy version release cadence and project activity because the last version was released 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.