Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
apollo-client-node
Advanced tools
配置中心 Apollo 的 Node.js 版本 SDK
npm install apollo-client-node --save
const apollo = require('apollo-client-node');
apollo.init({
basePath: '[配置获取接口链接前缀部分]', //必填,形如:https://apollo-config-dev.example.com
appId: '[项目AppId]', //必填
clusterName: '[集群名称]', //选填,默认为:default
namespaces: '[命名空间数组]', //选填,默认为:['application']
cachePath: '[配置缓存文件的路径]', //选填,默认为:os.tmpdir() + '/apollo_cache'
});
const apollo = require('apollo-client-node');
//设置配置,与 init() 保持一致,若 watch() 的 apollo 是已经初始化过了,则可跳过设置配置
apollo.setOptions({
basePath: '[配置获取接口链接前缀部分]', //必填,形如:https://apollo-config-dev.example.com
appId: '[项目AppId]', //必填
clusterName: '[集群名称]', //选填,默认为:default
namespaces: '[命名空间数组]', //选填,默认为:['application']
cachePath: '[配置缓存文件的路径]', //选填,默认为:os.tmpdir() + '/apollo_cache'
});
apollo.watch();
const apollo = require('apollo-client-node');
console.log(apollo.get('config-key'));
console.log(apollo.getAll());
npm install apollo-client-node --save
// scripts/init-apollo.js
const apollo = require('apollo-client');
apollo.init({
basePath: process.env.APOLLO_BASE_PATH,
appId: process.env.APOLLO_APP_ID,
});
//package.json
{
...
"scripts": {
"start": "npm stop && APOLLO_BASE_PATH=https://apollo-config.example.com APOLLO_APP_ID=app-id-xxx node scripts/init-apollo.js && eggctl start --daemon --title=egg-server-example",
"start:release": "npm stop && APOLLO_BASE_PATH=https://apollo-config.example.com APOLLO_APP_ID=app-id-xxx node scripts/init-apollo.js && eggctl start --daemon --title=egg-server-example-release",
"stop": "egg-scripts stop --title=egg-server-example",
"stop:release": "egg-scripts stop --title=egg-server-example-release",
"dev": "APOLLO_BASE_PATH=https://apollo-config-dev.example.com APOLLO_APP_ID=app-id-xxx node scripts/init-apollo.js && egg-bin dev",
...
}
...
}
// config/config.default.js
const apollo = require('apollo-client');
const cachePath = ''; //选填,默认为:os.tmpdir() + '/apollo_cache'
apollo.loadLocalConfig(cachePath);
module.exports = {
logger: {
dir: apollo.get('LOGGER_DIR'),
},
};
FAQs
配置中心 Apollo 的 Node.js 版本 SDK,可集成到 eggjs 框架
We found that apollo-client-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.