メモ書き
bowerにはあるけどnpmにはないパッケージをbowerを使わずにnpmでインストールしたいことがあったので
npmでインストールしたいリポジトリにpackage.json
があること
なくてもどうにかできそうだけど
バージョンは指定できない?
やり方
githubのリポジトリの場合
リポジトリの前にgit+
リポジトリの後に.git
をつけて
例) device.jsの場合 リポジトリ(https://github.com/matthewhudson/device.js)
npm install git+https://github.com/matthewhudson/device.js.git --save-dev
インストール完了
自分のpackage.json
に追加されていることを確認
package.json
"devDependencies": {
"device.js": "git+https://github.com/matthewhudson/device.js.git"
}
USAGE
main.js
import device from 'device.js'
その他の例
- jquery/PEP(https://github.com/jquery/PEP)
git+https://github.com/jquery/PEP.git
- swiper(https://github.com/nolimits4web/Swiper)
git+https://github.com/nolimits4web/Swiper.git