🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis
Socket
Book a DemoInstallSign in
Socket

configparser

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

configparser

A basic config parser language based off the Python ConfigParser module.

latest
Source
npmnpm
Version
0.3.10
Version published
Weekly downloads
23K
24.4%
Maintainers
1
Weekly downloads
 
Created
Source

Config Parser CircleCI

A NodeJS module based off of Python's ConfigParser. It implements a basic configuration file parser. The structure is very similar to the Windows INI file.

Installation

npm install configparser

Documentation

See Full Documentation Here

Example

Writing

There are two methods available for writing the contents of the config file to disk: write and writeAsync.

const ConfigParser = require('configparser');

const config = new ConfigParser();

// Adding sections and adding keys
config.addSection('User');
config.set('User', 'token', 'some value');
config.set('User', 'exp', 'some value');

// With String Interpolation, %(key_name)s
config.addSection('MetaData');
config.set('MetaData', 'path', '/home/%(dir_name)s/');
config.set('MetaData', 'dir_name', 'me');

config.write('my-cfg-file.cfg');
File
[User]
token=some value
exp=some value

[MetaData]
path=/home/%(dir_name)s/
dir_name=me
Reading

There are two methods available for reading the contents of the config file from disk: read and readAsync.

config.read('my-cfg-file.cfg');
config.sections(); // ['User', 'MetaData']
config.get('User', 'token'); // 'some value'
config.get('MetaData', 'path'); // '/home/me/'

Questions and Issues

Use the Github Issue Tracker to report a bug, request a feature, or if you need any help.

Keywords

config

FAQs

Package last updated on 02 Oct 2022

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