我想在我的Meteor應用中使用npm package。這是 缺少一些功能,所以我分叉回購和自己應用補丁。 我安裝使用叉包:直接從github安裝的導入npm模塊
meteor npm install --save https://github.com/suheb/react-slick.git
現在,當我嘗試使用import Slider from 'react-slick'
使用包,我收到以下錯誤:
Uncaught Error: Cannot find module 'react-slick' install.js:101
我如何使用這個包安裝直接從github? PS:我已經要求原始所有者更新npm註冊表上的軟件包,但我不確定它需要多長時間。
你可以使用git submodules https://git-scm.com/docs/git-submodule –
你用'npm install https:// github.com/suheb/react-slick'試過了嗎? – slorenzo
@SebastianLorenzo沒有工作。 – suheb