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

cleaner-config

v0.1.10

Published

A utility to manage config using cleaners.

Downloads

256

Readme

Cleaner Config

A utility to easily manage strongly-typed JSON configs using cleaners for runtime type-checking. The benefits for using type-checked config:

  1. Clear error messages
  2. Easy to refactor your config
  3. Always valid default/sample config

Usage

Installation

yarn add cleaner-config

config.ts

Your config is completely managed by a cleaner (asConfig). All you need is a file for your config cleaner and config object returned by makeConfig.

import { makeConfig } from 'cleaner-config'
import { asObject, asOptional, asString } from 'cleaners'

export const asConfig = asObject({
  username: asOptional(asString),
  password: asOptional(asString),
})

export const config = makeConfig(asConfig)

index.ts

Now you can use this type information to make a config object from the JSON config file.

import { config } from './config'

// config is ready to use...

API

function makeConfig(asConfig: Cleaner<T>, filepath?: string): T

The makeConfig utility function will read the config.json relative to process.cwd() and type-check the JSON at runtime using the asConfig cleaner argument.

An optional filepath argument can be passed to makeConfig to customize the config file path. The path is relative to current working directory. The path is treated as absolute if prefixed with a forward-slash (/).

makeConfig(asConfig, 'custom-config.json')
makeConfig(asConfig, '/etc/config.json')
makeConfig(asConfig, process.env.CONFIG)

Default Config

Providing a default config (i.e sample, example) is trivial using cleaners. When a config file is not found, the return value of your asConfig cleaner is used as the default config as long as it doesn't throw given {} as the input.

export const asConfig = asObject({
  username: asOptional(asString, 'john'),
  password: asOptional(asString, 'supersecret'),
})

export const config = makeConfig(asConfig)

The config.json file will automatically be created with the default values if it doesn't exist. This means zero-configuration for your app out of the box!

With a cleaner config, you no longer need to copying config.sample.json to config.json! This is automated for you. This saves you a step when running your app and also the overhead of maintaining an a default config file that isn't type checked.

Configure Script

Although the makeConfig function will create a new config JSON file at app runtime, we can do better. We can add a configure script in our package.json and include this in the prepare life-cycle script.

{
  "scripts": {
    "configure": "node -r sucrase/register src/config.ts",
    "prepare": "yarn configure && yarn build"
  }
}

Now our config file is available after app installation, ready for modification!

CLI

Conveniently, cleaner-config comes with a configure CLI utility which can be used instead of a script in your package.json.

{
  "scripts": {
    "prepare": "configure && yarn build"
  }
}

The configure will look for a config.ts file in your project root or in src/, compile it using sucrase, and then run it using node. Optionally, you can provide a file path argument to your config script.

configure src/my-config.ts