
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
A utility for Unity developers to symlink scripts into their Assets folders. Useful for library development.
A utility for Unity developers to symlink scripts into their Assets folders.
It's useful for library development. If you are building a framework, and need to share it between projects, you can put the framework in its own project, and use unity-link to symlink the framework project into your other projects.
Similarly, if you're using an open-source framework and you want to symlink the project in so you can maintain updates, unity-link works the same way.
unity-link is an npm module, so you'll need to install Node and npm. I'll let you figure that part out. It's not too hard.
Install globally: npm install -g unity-link
Run the cli: unity-link [sharedDir] [targetDir]
[sharedDir] is the shared/framework code
e.g.: ~/dev/shared-framework
[targetDir] is the target directory in your Unity project
e.g.: ~/dev/my-game/Assets/shared-framework
Install locally: npm install --save-dev unity-link
Use link this:
var unityLink = require("unity-link");
unityLink.allFiles("~/path/to/shared-framework", "./Assets/shared-framework");
Both paths can be absolute or relative paths.
FAQs
A utility for Unity developers to symlink scripts into their Assets folders. Useful for library development.
The npm package unity-link receives a total of 0 weekly downloads. As such, unity-link popularity was classified as not popular.
We found that unity-link 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.