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

fis3-parser-get-conf

v2.0.0

Published

fis3发布时提供js、html或css代码获取服务器端配置信息的能力。

Downloads

23

Readme

fis3-parser-get-conf

该模块用于在fis3发布项目时为前端js、html以及css代码提供获取服务器端配置信息的能力。

使用方法

安装模块

npm install -g fis3-parser-get-conf

使用基础功能

fis.match('*', function(){
  parser: fis.plugin('get-conf')
});

配置项

fis.match('*', {
  parser: fis.plugin('get-conf', {
    confFile: "./conf.json", /*配置文件名称*/
    contextPath: "/app",     /*上下文路径*/
    ifExcluded: function(propStr){
      return propStr in {'redis.pass': 1};
    }
  })
});
  • confFile : 服务器端配置文件的路径(相对于当前工作目录)。如果该参数未配置, 则优先使用 ./fdp-config.js 文件, 如果 ./fdp-config.js 文件不存在, 则使用 ./fdp-conf.js 文件。__getConf 方法获取的正是该文件中的属性。
  • ifExcluded: 是否排除某些属性的判别方法,每次 __getConf 方法被调用之前 ifExcluded 方法都会被调用,用以判断是否忽略该属性。该方法接受到的参数为 __getConf 的参数,如果该方法返回 true,则忽略该属性, __getConf 方法将得到一个空字符串的返回值。该方法主要用于防止敏感信息泄露。

在js文件中获取配属性

var url = __getConf('fdp-sso-client.fdp-sso-server-uri');
var path = __context(); /* ==> /app */
var path = __context('/test'); /* ==> /app/test */

在html文件中获取配属性

<a href="__getConf(fdp-sso-client.fdp-sso-server-uri)"></a>
<a href="__context(/index.html)"></a>

关于__getConf方法的参数

__getConf 方法的参数如果是用 . 分割,则表示是递归获取对象属性。如 __getConf(fdp-sso-client.fdp-sso-server-uri) 表示获取配置文件中 fdp-sso-client 对象的 fdp-sso-server-uri 属性值。