jspm / registry

The jspm registry and package.json override service
https://jspm.io
229 stars 256 forks source link

The ability to install local packages? #965

Open oleersoy opened 7 years ago

oleersoy commented 7 years ago

With NPM we can install local packages like this: npm i /path/to/local-package. The local-package is now referenced in the target project like this:

  "dependencies": {
    "local-package": "file:///full/path/to/local-package",

Thus local packages can be used without first installing them on github or npm. Does JSPM have a similar feature?

guybedford commented 7 years ago

You can do this via jspm link /path/to/package but in jspm 0.17 only.

oleersoy commented 7 years ago

Sweet - I just read up on that. Could jspm link be aliased to jspm i (In order to maintain symmetry with npm)?