
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
Create links between files cross-platform
$ [sudo] npm install lnk-cli --global
$ tree
.
└── assets
├── favicon.ico
└── style
├── app.css
└── vendor.css
2 directories, 3 files
$ lnk assets/favicon.ico assets/style dist
# or using bash globs
$ lnk assets/* dist
$ tree
.
├── assets
│  ├── favicon.ico
│  └── style
│  ├── app.css
│  └── vendor.css
└── dist
├── favicon.ico // hard link to assets/favicon.ico
└── style -> ../assets/style // symlink; directory junction on windows
4 directories, 4 files
lnk don't support globbing by itself, for platform independent glob support use globstar:
$ npm install globstar --global
$ globstar -- lnk "assets/*" dist
Please note that Windows needs double quotes, especially if you want to use it in your package.json:
"scripts": {
"link-assets": "globstar --node -- lnk \"assets/*\" dist",
},
MIT © Michael Mayer
FAQs
Create links between files cross-platform
The npm package lnk-cli receives a total of 426 weekly downloads. As such, lnk-cli popularity was classified as not popular.
We found that lnk-cli 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.