看到错误找不到模块:' pg-native'在heroku应用程序中

时间:2017-01-08 00:32:25

标签: node.js reactjs heroku heroku-postgres

我试图将postgres插件与一个也在使用反应的heroku节点应用程序一起使用。

我使用这个反应buildpack来支持heroku内部的反应: https://github.com/opike/create-react-app-buildpack.git

当我尝试添加该行时:

var pg = require('pg');

当我尝试在本地运行heroku应用程序时出现以下编译错误:

>heroku local web
[OKAY] Loaded ENV .env File as KEY=VALUE Format
[WARN] ENOENT: no such file or directory, open 'Procfile'
[OKAY] package.json file found - trying 'npm start'
4:15:19 PM web.1 |  > test-app@0.1.0 start /Users/oliverpike/dev/heroku/ofp-react
4:15:19 PM web.1 |  > react-scripts start
4:15:20 PM web.1 |  Starting the development server...
4:15:29 PM web.1 |  Failed to compile.
4:15:29 PM web.1 |  Error in ./~/pg/lib/native/index.js
4:15:29 PM web.1 |  Module not found: 'pg-native' in /Users/oliverpike/dev/heroku/ofp-react/node_modules/pg/lib/native
4:15:29 PM web.1 |   @ ./~/pg/lib/native/index.js 1:13-33
4:15:29 PM web.1 |  Error in ./~/pg/lib/connection-parameters.js
4:15:29 PM web.1 |  Module not found: 'dns' in /Users/oliverpike/dev/heroku/ofp-react/node_modules/pg/lib
4:15:29 PM web.1 |   @ ./~/pg/lib/connection-parameters.js 2:10-24

1 个答案:

答案 0 :(得分:1)

我能够通过以下方式解决这个问题:

> npm i pg-native

如下所述: https://github.com/brianc/node-pg-native

以及

> npm i dns

关于dns问题。

奇怪的是,我不需要在使用postgres的其他heroku应用程序中显式安装这些软件包。