目标

在vue-cli项目中安装并构建googleapis软件包。



https://github.com/ChaddPortwine/test-googleapis

要创建此示例,我只需:


vue init webpack test-googleapis
npm install
npm install googleapis --savenpm install google-auth-library --save
npm run dev(到目前为止,可以构建并运行应用程序)
将行import googleapis from 'googleapis'添加到main.js
npm run dev(ERR Child_Process)


失误

 ERROR  Failed to compile with 13 errors                                                      11:16:12 AM

These dependencies were not found:

* child_process in ./node_modules/googleapis/node_modules/google-auth-library/lib/auth/googleauth.js
* fs in ./node_modules/google-p12-pem/index.js, ./node_modules/googleapis/lib/googleapis.js and 5 others
* net in ./node_modules/forever-agent/index.js, ./node_modules/tough-cookie/lib/cookie.js and 1 other
* tls in ./node_modules/forever-agent/index.js, ./node_modules/tunnel-agent/index.js

To install them, you can run: npm install --save child_process fs net tls




如何使用googleapis构建应用?

最佳答案

之所以会出现这些错误,是因为googleapis库是一个Node库,因为它在客户端(浏览器)上不起作用,因此Webpack无法正确处理它。

您可以在基于节点的后端(例如Express)中使用它,但不能在客户端Vue应用程序中使用它-也许可以通过Nuxt与服务器端渲染的Vue应用程序一起使用,但不确定,尚未尝试过。

关于node.js - Vue项目和googleapis-无法生成-child_process错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47078811/

10-10 00:35