An open API service indexing awesome lists of open source software.

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.

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.