Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cowboy/node-linken
like "npm link" but maybe easier or something.
https://github.com/cowboy/node-linken
Last synced: 21 days ago
JSON representation
like "npm link" but maybe easier or something.
- Host: GitHub
- URL: https://github.com/cowboy/node-linken
- Owner: cowboy
- License: mit
- Created: 2012-10-09T20:59:19.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-12T21:11:00.000Z (over 10 years ago)
- Last Synced: 2024-10-04T17:08:45.756Z (about 1 month ago)
- Language: JavaScript
- Size: 238 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# linken
> like `npm link` but maybe easier or something.
```
Instead of linking in-development projects globally (npm link), then linking
them into another project (npm link projectname), just link them directly to
the other project with explicit symlinks.Usage: linken dest [dest [...]] --src somepath [--src somepath [...]]
--src Directory containing one or more in-development projects. These
projects are linked into the dest projects node_modules dirs.
--unlink Instead of linking, unlink.
--debug A lot more output.
--help This help screen.
--version The version.An example: linken /dev/repos/*/ --src /dev/repos
Link any "src" repos (subdirectories of /dev/repos) into each project matched
by /dev/repos/*/. In this case, every subdirectory of /dev/repos.This would also work: cd /dev/repos; linken */ --src .
```## why?
[SO MANY REPOS](https://github.com/gruntjs)## revision history
0.2.1 - 2014-05-12 - Falls back to infinity for version range if none specified for url versions.
0.2.0 - 2012-10-10 - Now resolves module version conflicts. Works as a lib. Unit tests. Yay.
0.1.0 - 2012-10-09 - Initial release.