jaypan/private-message-nodejs
最新稳定版本:0.3.7
Composer 安装命令:
composer require jaypan/private-message-nodejs
包简介
The Node.js backend for the Drupal Private Message Nodejs sub-module of the Private Message module.
README 文档
README
This package provides the server-side scripts for integration of the Drupal Private Message module with Nodejs.
Installation Instructions
- Install Nodejs on your server.
- Navigate to the directory that this file resides in.
- Run
npm installfrom this directory. - Create the folder [VENDOR FOLDER]/jaypan/config.
- Create the file [VENDOR FOLDER]/jaypan/config/default.json for the app.
Create default.json by copying either ./http-example.default.json (for HTTP
connections) or ./https-example.default.json (for HTTPS connections). Fill in all
the values in the JSON file. Note that you will need to navigate to the Private
Message settings form in Drupal, and copy the Nodejs secret value, to paste into
default.json. If you are using https, you should start with port 8443, and if
you are able to get that working, you can try other ports.
- Run
node app.jsfrom this directory. Note that you need to leave this program running for the module to work with Nodejs.
Overriding configuration by environment
If you want to have separate configuration per environment, you can do the following.
If your environment is production, then in the [VENDOR FOLDER]/jaypan/private-message-nodejs/config folder, alongside default.json, you can create production.json. Then, to run your app, you would do the following:
export NODE_ENV=production
node app.js
The key here is that NODE_ENV is set to the name of the file without the .json. So you could do a staging server with staging.json and:
export NODE_ENV=staging
node app.js
统计信息
- 总下载量: 4.66k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2018-05-25