
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
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.

Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.

Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.

Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.