我按照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分钟)。
如何解决此问题?是否有任何日志文件我可以检查以找出问题?
答案 0 :(得分:3)
我刚刚在与我自己不同的机器上测试了发电机。它在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)
我在各种限制背后做了很多工作,企业环境并不容易。在下面找到我的所有推荐列表:
我还遇到了几个问题,具体取决于 node 版本和 npm 版本。大多数时候我无法控制我使用的版本。 当我运行前面提到的调试模式时,我更幸运地理解了潜在的问题。先前响应中的命令已弃用,其中一些已更改,但您几乎可以:
使用这种方法会立即出现任何问题。