https://github.com/ctrlplusb/simee
Ultra simple symlinking of local npm packages.
https://github.com/ctrlplusb/simee
Last synced: 8 months ago
JSON representation
Ultra simple symlinking of local npm packages.
- Host: GitHub
- URL: https://github.com/ctrlplusb/simee
- Owner: ctrlplusb
- Created: 2017-08-01T11:40:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-01T11:58:07.000Z (over 8 years ago)
- Last Synced: 2025-02-26T09:45:25.098Z (11 months ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# simee
Ultra simple symlinking of local npm packages.
```
npm install simee -g
```
Create a `.simeerc` file at your projects root:
```json
{
"name-of-local-package": "../path/to/local/package",
"name-of-other-local-package": "../path/to/other/local/package",
}
```
Then run simee.
```
simee
```
It will symlink the target package(s) as well as any binaries defined within them.
I use this for some quick local test/development. Probably needs lots more work to be useable to others. For example I haven't even considered the dependencies of the packages being linked.