Socket
Book a DemoInstallSign in
Socket

node-properties-parser

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-properties-parser

A parser for .properties files written in javascript

0.0.2
latest
Source
npmnpm
Version published
Weekly downloads
1.3K
69.14%
Maintainers
1
Weekly downloads
 
Created
Source

node-properties-parser

A parser for .properties files written in javascript. Properties files store key-value pairs. They are typically used for configuration and internationalization in Java applications. Here's an example of the format:

# You are reading the ".properties" entry.
! The exclamation mark can also mark text as comments.
website = http://en.wikipedia.org/
language = English
# The backslash below tells the application to continue reading
# the value onto the next line.
message = Welcome to \
          Wikipedia!
# Add spaces to the key
key\ with\ spaces = This is the value that could be looked up with the key "key with spaces".
# Unicode
tab : \u0009

(taken from Wikipedia)

Currently works with any version of node.js.

The API

  • parse(text): Parses text into key-value pairs. Returns an object containing the key-value pairs.
  • read(path, callback): Opens the file specified by path and calls parse on its content. The result is then passed to callback as the second parameter. If an error occurs, the error object is passed to callback as the first paramter.
  • readSync(path): A synchronous version of read. Opens the file specified by path synchronously and calls parse on its contents.

Getting node-properties-parser

The easiest way to get node-properties-parser is with npm:

npm install node-properties-parser

Alternatively you can clone this git repository:

git://github.com/xavi-/node-properties-parser.git

Developed by

  • Xavi Ramirez

License

This project is released under The MIT License.

Keywords

parser

FAQs

Package last updated on 06 Apr 2012

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.