我在我的 vps 服务器上运行节点。节点在我的根目录下,我的 app.js 和 node_modules (express, socket.io) 在 /home/vps/public_html/
当按照 github 自述文件设置 sendgrid 我遇到了麻烦:
config.js 不像我运行 sendgrids 简单代码示例时那样听它的声音,如果我
a.) 通过执行以下操作来引用 config.js:
var sendgrid=new SendGrid(user,key);
由于未定义用户,节点杀死了自己。
b.) 通过执行以下操作绕过 config.js:
var sendgrid=new SendGrid({user:'my_user_name',key:'my_password'});
我得到 ['Permission denied, wrong credentials'] 的 console.log(message)
这是我的 public_html 结构的另一张图片:
有人知道如何激活这个 config.js 吗?
我应该在一开始就将 node.js 安装到我的 public_html 中吗?