This repository was archived by the owner on Dec 17, 2024. It is now read-only.
This repository was archived by the owner on Dec 17, 2024. It is now read-only.
plugin install
is slow and brittle #119
Open
Description
currently it relies on npm install
which has its issues.
In order to speed this up, what about trying to download a distribution package stored in github release. The installation steps would be:
- run
npm view <packagename> repository.url version
- if url exists, try dowloading `/releases/download//shell-plugin.zip
- if download succeeded, unzip in the user shell plugin
- otherwise use
npm install
Suggestions?
Activity
starpit commentedon Jan 18, 2018
what if the plugin has its own package.json dependencies?