'哟办公室'很长一段时间没有回应

时间:2016-11-20 22:25:20

标签: office365 yeoman office-addins office-js yo

我按照https://dev.office.com/getting-started/addins#selectapp的说明制作我的第一个MS办公室powerpoint插件。

我安装了yeoman生成器并运行了此命令yo office

yo office                                                                                                                                    ⏎

     _-----_     ╭──────────────────────────╮
    |       |    │   Welcome to the Office  │
    |--(o)--|    │   Project generator, by  │
   `---------´   │ @OfficeDev! Let's create │
    ( _´U`_ )    │    a project together!   │
    /___A___\   /╰──────────────────────────╯
     |  ~  |     
   __'.___.'__   
 ´   `  |° ´ Y ` 

? Project name (display name):  myHelloWorldAddin
? Root folder of project? Default to current directory
 (/Users/antkong/dev/zeetings/ppt), or specify relative path
 from current (src / public):  .
? Office project type: Task Pane Add-in
? Supported Office applications: (Press <space> to select, <a> to toggle all, <i> to inverse selection)Word, Excel, PowerPoint, OneNote, Project
? Technology to use: HTML, CSS & JavaScript
   create bower.json
   create package.json
   create tsd.json
   create .bowerrc
   create gulpfile.js
   create content/Office.css
   create images/close.png
   create images/logo-filled.png
   create scripts/MicrosoftAjax.js
   create jsconfig.json
   create tsconfig.json
   create manifest-myhelloworldaddin.xml
   create manifest.xsd
   create app/app.css
   create app/app.js
   create app/home/home.html
   create app/home/home.css
   create app/home/home.js

它停留在最后一行很长一段时间(现在最多15分钟)。

如何解决此问题?是否有任何日志文件我可以检查以找出问题?

2 个答案:

答案 0 :(得分:3)

enter image description here我刚刚在与我自己不同的机器上测试了发电机。它在real 1m18.625s内成功运行user 0m33.462s互动时间。看看它停在哪里,你办公室要做的下一件事就是连接到不同的git远程源并安装所需的子模块。我建议退出并再次办公室。 :)

Repo住在这里 - https://github.com/officedev/generator-office

如果您对调试感兴趣并为生成器做出贡献,可以通过运行它来传递Node.js调试标志:

# OS X / Linux
node --debug `which yo` <generator> [arguments]

# Windows
# Find the path to the yo binary in Command Prompt
where yo
# Or find the path to the yo binary in PowerShell
get-command yo
# Would be something like C:\Users\<USER>\AppData\Roaming\npm\yo
# Use this path to derive yo cli.js file
# C:\Users\<USER>\AppData\Roaming\npm\node_modules\yo\lib\cli.js
node --debug <path to yo cli.js> <generator> [arguments]

答案 1 :(得分:0)

我在各种限制背后做了很多工作,企业环境并不容易。在下面找到我的所有推荐列表:

  • 验证代理,npm默认不使用代理,设置proxy和http-proxy为贵公司的
  • 验证是否将严格的 ssl 标志设置为 false,这通常会导致下载失败(公共/专用网络之间的典型流量问题)
  • 验证在 npm 中正确设置了注册表以使用(通常是)registry.npmjs.org

我还遇到了几个问题,具体取决于 node 版本和 npm 版本。大多数时候我无法控制我使用的版本。 当我运行前面提到的调试模式时,我更幸运地理解了潜在的问题。先前响应中的命令已弃用,其中一些已更改,但您几乎可以:

  1. 使用“where yo”查找 yo 的安装位置
  2. 转到文件夹并找到位于 [base folder]\lib\cli.js 中的 yo 模块
  3. 使用 node --inspect [cli 的完整路径] [您的参数] 执行它

使用这种方法会立即出现任何问题。