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

properties-like

v2.0.0

Published

Properties parser implements the Java .properties specification

Downloads

24

Readme

properties-like

npm package

NPM version NPM Downloads

This module implements the Java .properties specification


Installation

CommonJS style with npm

npm install --save properties-like

In node env:

const Properties = require('properties-like');
const props = new Properties(); // Properties.getProperties()
props.loadFrom('./jdbc.properties');
// or
props.load(fs.readFileSync('./jdbc.properties'));

In webpack env:

{
  module: {
    rules: [{
      test: /\.properties$/,
      loader: 'properties-like/webpack-loader'
    }]
  }
}

Load properties-like via classical <script> tag

<script src="https://cdn.jsdelivr.net/npm/properties-like/browser/umd.min.js"></script>
<script>
  var props = new Properties(); // Properties.getProperties()
  props.load('key=value\nkey2=value2');
  props.getProperty('key'); // ==> 'value'
  props.getProperty('key2'); // ==> 'value2'
</script>
<script src="https://cdn.jsdelivr.net/npm/properties-like/browser/parse.umd.min.js"></script>
<script>
  var props = {};
  parseProperties('key=value\nkey2=value2', function(key, value) {
    props[key] = value;
  });
  console.log(props); // ==> { key: 'value', key2: 'value2' }
</script>

API

Instance Method Summary

实例方法

| Modifier and Type | Instance Methods | Description | | :------------- | :------------- | :----- | | this | clear() | Clears this property list so that it contains no keys.清空属性集合对象内的key和value。 | | Properties | clone() | Creates a shallow copy of this property list.浅克隆一个属性集合对象。 | | Boolean | containsKey​(key)key: String | Tests if the specified object is a key in this property list.检测是否包含指定key。 | | Boolean | containsValue​(value)value: any | Returns true if this property list maps one or more keys to this value.检测是否包含指定value。 | | this | forEach(callback)callback: Function | Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.遍历属性集合,在回调函数中返回包含value和key的数组。 | | any | get​(key [, defaultValue])getProperty(key [, defaultValue])key: StringdefaultValue: any(optional) | Returns the value to which the specified key is mapped, or undefined if this map contains no mapping for the key.根据指定的key返回对应的value,如果未匹配到就返回默认值或者undefined。 | | Number | getNumber(key [, defaultValue])key: StringdefaultValue: any(optional) | Returns the value to which the specified key is mapped, and convert it to Number.根据指定的key返回对应的value,并转成数字。 | | Number | getBoolean(key [, defaultValue])key: StringdefaultValue: any(optional) | Returns the value to which the specified key is mapped, and convert it to Boolean.根据指定的key返回对应的value,并转成bool值。 | | Boolean | isEmpty​() | Tests if this property list maps no keys to values.判断是否是空集合。 | | Array<String> | keys​()propertyNames() | Returns an array of the keys in this property list.返回所有的key | | this | load​(content)content: Stringtransform: Function | Reads a property list (key and element pairs) from the content.从字符串中提取出key和value。 | | this | loadFrom(filePath)filePath: Stringtransform: Function | Loads all of the properties from a file.从文件中提取出key和value。 | | this | put​(key, value)set​(key, value)setProperty​(key, value)key: Stringvalue: any | Maps the specified key to the specified value in this property list.暂存key和value至属性集合。 | | Number | putAll​(t)setProperties​(t)t: Object | Array | Copies all of the mappings from the specified map to this property list.把数组或者对象浅拷贝至属性集合。 | | Boolean | remove​(key [, specifiedValue])delete​(key [, specifiedValue])key: String specifiedValue: any(optional) | Removes the entry for the specified key or even it is mapped to the specified value.移除指定的key的映射或者也包含指定的value才被移除。 | | Boolean | replace​(key, newValue)key: String newValue: any | Replaces the entry for the specified key only if it is currently mapped to some value.替换已存在的指定的key的映射。 | | Number | size​() | Returns the number of keys in this property list.属性集合内key的数量 | | this | store​(filePath [, fsOptions])filePath: String fsOptions: Object | Writes this property list (key and element pairs) in this Properties table to a file.把key&value写入文件 | | Array | values​() | Returns a Array of the values contained in this map.返回所有的value |

Static Method Summary

静态方法

| Modifier and Type | Static Method | Description | | :------------- | :------------- | :----- | | void | parse(inCharBuf, callback) inCharBuf: String | Arraycallback: Function | Try to parse out key and element pairs from a given String/Array尝试从字符串中解析出key和value |


Usage

Create a test.properties file

# backslash
jdbc.mysql.driver     = com.mysql.jdbc.Driver
jdbc.mysql.url        = jdbc\:mysql\://localhost\:3306/test?useUnicode\=true&characterEncoding\=gbk
jdbc .mysql\ .username= test\
123456789
jdbc\:mysql.password   = ~\ !@#$%^&*
jdbc.mysql\=maxActive  = \ \ 50\ 

# Unicode
username=\u7528 \u6237 \u540d
\u8d26 \u53f7=test123
\u6635 \u79f0=\u540a \u70b8 \u5929
p

int=1
bool=true

Read and parse the file

const Properties = require('properties-like');
const props = new Properties();
props.loadFrom('./test.properties');

props.get('jdbc.mysql.driver'); // ==> 'com.mysql.jdbc.Driver'
props.getProperty('jdbc.mysql.driver     '); // ==> undefined
props.getProperty('jdbc.mysql.url'); // ==> 'jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=gbk'
props.getProperty('jdbc.mysql .username'); // ==> 'test123456789'
props.getProperty('jdbc:mysql.password'); // ==> '~ !@#$%^&*'
props.getProperty('jdbc.mysql=maxActive'); // ==> '  50 '
props.getProperty('username'); // ==> '用户名'
props.getProperty('账号'); // ==> 'test123'
props.getProperty('昵称'); // ==> '吊炸天'
props.getProperty('p'); // ==> ''
props.getNumber('int'); // ==> 1
props.getBoolean('bool'); // ==> true

props.forEach((value, key) => {

});

for (let [value, key, index] of props) {

}

Browser Support

Chrome | Firefox | Safari | Opera | Edge | IE | --- | --- | --- | --- | --- | --- | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | 9 ✔ |