npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

egg-extra-config

v0.0.1

Published

Extra config plugin for egg

Downloads

5

Readme

egg-extra-config

Build Status codecov

Loading config file outside eggjs project path. Watching this file's changes and auto reloading configurations of app.config without restarting process.

Install

npm install egg-extra-config

Usage

// plugin.js
exports.extraConfig = {
  enable: true,
  package: 'egg-extra-config',
};

Configuration

Configure information in ${app_root}/config/config.default.js:

Paths

Support directory path.

chokidar#paths(string or array of strings). Paths to files, dirs to be watched recursively, or glob patterns.

Single path

config.extraConfig: {
  paths: '/your/custom/config/path/config.js',
};

Multi paths

These files' config reloading has no priority.

However, the same configuration will be overrided in the order of the array only during application starting.

config.extraConfig: {
  paths: [
    '/etc/path/config.js',
    '/etc/path/dir/',
    '/etc/path/this-file-might-override-the-above-files.js',
  ],
};

Extensions

Used to restrict file types.

By default, configuration will be loaded by require, this could be dangerous because functions can be executed in a .js file.

If you do not want the runtime environment to be destoryed, it is highly recommended to configure extensions as ['.json'].

config.extraConfig: {
  paths: [
    '/etc/path1/',
    '/etc/path2/',
  ],
  extensions: [ '.json' ],
};

TODO

  • [ ] 按照egg的生命周期,应该在configDidLoad()前完成自定义配置的加载,目前放在app.beforeStart()
  • [ ] 限制只能重载项目config目录内、或不在app.config内的配置
  • [ ] 日志记录变更值
  • [ ] 优化配置加载过程
  • [ ] IPC

DONE

  • [x] 监听特定目录或文件变更,将变动应用于配置的重载
  • [x] 在app.ready()前完成自定义配置的加载,借助了app.beforeStart()
  • [x] 优化拷贝过程,支持嵌套对象的内部变更
  • [x] 删除自定义配置后,重新加载项目内对应配置
  • [x] 支持配置多个文件,参考chokidar API#paths:(string or array of strings) "Paths to files, dirs to be watched recursively, or glob patterns"。 但不做优先级处理,仅在配置加载过程中按照数组顺序来覆盖相同配置。
  • [x] 支持目录,~~以egg的方式加载其中配置~~,通过require.resolve修正路径,按照module的形式读取
  • [x] 限制文件类型(可选),例如只监视.json,避免.js文件破坏运行状态
  • [x] 文件变更防抖动