Socket
Socket
Sign inDemoInstall

java-properties

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

java-properties

Reads and interpolates Java .properties files


Version published
Weekly downloads
1.6M
increased by2.94%
Maintainers
1
Weekly downloads
 
Created

What is java-properties?

The java-properties npm package is used for reading, writing, and manipulating Java-style .properties files. These files are commonly used for configuration purposes in Java applications.

What are java-properties's main functionalities?

Reading Properties

This feature allows you to read and load properties from a .properties file into a JavaScript object.

const properties = require('java-properties');
const config = properties.of('config.properties').load();
console.log(config);

Writing Properties

This feature allows you to write a JavaScript object as properties into a .properties file.

const properties = require('java-properties');
const config = { key1: 'value1', key2: 'value2' };
properties.of('config.properties').save(config);

Updating Properties

This feature allows you to update existing properties in a .properties file.

const properties = require('java-properties');
const config = properties.of('config.properties').load();
config.key1 = 'newValue';
properties.of('config.properties').save(config);

Deleting Properties

This feature allows you to delete properties from a .properties file.

const properties = require('java-properties');
const config = properties.of('config.properties').load();
delete config.key1;
properties.of('config.properties').save(config);

Other packages similar to java-properties

Keywords

FAQs

Package last updated on 12 Jul 2019

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc