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

@eta357/config-reader

v2.2.2

Published

An NPM package to read a configuration file in a robust and user-friendly manner.

Downloads

1

Readme

Config-Reader

An NPM package to read a configuration file in a robust and user-friendly manner. This package allows your to easily store config information in JSON format for your programs. It is intended for use with projects that have "secrets" (e.g. API keys) or options you want the user to configure before running your project.

Features

  • Can read a JSON file and pull specific data from the file
  • Will ensure that it has read/write access where applicable before attempting to access the file
  • Ability to create a file with default settings if one is not found
  • Ability to add options to a file if the option is not found
  • Checking if certain options are not found or empty
  • Type checking
  • Writing options back to a file
  • Error handling and robustness
  • Asynchronous operation

Installation

npm i @eta357/config-reader

Usage

This package was designed with ease of use in mind as a universal JSON file reader. First, require the module:

const confReader = require('@eta357/config-reader')

Reading

Then, specify a file path and an object with options to read. In the object, set the option values to what the default should be if you would like to create a new file:

const configFile = './Options.json'
const configOptions = {
  'Environment':'Production',
  'API_Key':'',
  'API_Secret':'',
  'Users':[],
  'Settings':{ 'Theme':'Dark' }
}

const acceptEmpty = false
const createNew = true
const addNotExist = true
var config

Read the specified options from the file:

confReader.readOptions(configFile, configOptions, acceptEmpty, createNew, addNotExist).then((options) =>
{
  console.info('Successfully read config information.')
  console.debug('Read options:', options)
  client.login(options['API_Key'])
  config = options
}).catch((error) =>
{
  console.error(error)
  proccess.exit(1)
})

This will read the listed options from Options.json, failing if a field is empty, and creating a new file with the filled defaults if one does not exist. If one of the specified options is not found in the file, it will be added to the JSON.

Writing

After modifying your config options, you can write them back to the file just as easily:

confReader.writeOptions(configFile, config, createNew).then((result) =>
{
  console.info('Successfully saved configuration info.')
}).catch((error) =>
{
  console.error(error)
  process.exit(1)
})