Hyperterm安装插件时无法找到模块错误

时间:2017-03-03 15:33:42

标签: javascript plugins terminal hyperterminal hyperterm

我安装了一些插件,但是hyperterm-transparent-bg

出错了
plugins: [
  'hyperterm-material',
  'hyperterm-transparent-bg',
  'hyperterm-blink'
],

以下不起作用,即使我的路径正确,我仍然会收到无法找到模块错误。

enter image description here

enter image description here

  

bundle.js:1错误:找不到模块'/Users/leongaban/.hyper_plugins/node_modules/hyperterm-transparent-bg'       在Module._resolveFilename(module.js:455:15)

我重新安装了Hyperterm,看起来它不能重建npm-debug.log文件:(

Here is the gist to the last one I had saved off.

2 个答案:

答案 0 :(得分:0)

尝试在shell中设置.hyper.js属性。

我遇到了同样的问题,并在阅读https://github.com/zeit/hyper/issues/1513#issuecomment-281414846

之后通过设置shell属性来解决问题

答案 1 :(得分:0)

感谢回答中的这个答案:https://github.com/dfrankland/hyper-transparent-bg/issues/9#issuecomment-284415902

显然它改为此插件:https://www.npmjs.com/package/hyper-transparent

我使用yarn代替npm来安装它:yarn add npm i hyper-transparent

然后在我的.hyper.js配置中:

plugins: [
  'hyperterm-material',
  'hyperterm-blink',
  'hyper-transparent'
]

搞定了!我花了一秒钟才意识到透明度控制着OSX工具栏视图菜单中的位置。

enter image description here