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

@andyrmitchell/typed-config

v0.1.0

Published

Get/set data from a config file with full TypeScript IDE autocomplete and TypeScript + Zod schema checking

Downloads

5

Readme

Typed Config

Get/set data from a config file with full TypeScript IDE autocomplete and TypeScript + Zod schema checking

Supported Environments

  • Node
  • Deno (if imported with npm: prefix)

## Install

npm i @andyrmitchell/typed-config

How it works

The basic approach


import {TypedConfig} from '@andyrmitchell/typed-config';

// The very basic approach
const confBasic = new TypedConfig();
await confBasic.set('dot.prop.path.to.value', 'hello world');
const valueBasic = confBasic.getSync('dot.prop.path.to.value'); // 'hello world'

More examples

import {TypedConfig} from '@andyrmitchell/typed-config';
import { z } from 'zod';

async function main() {

    // Customise location, to store in /<path-to-your-package>/config_store/confCustom.json
    const confCustomStore = new TypedConfig({type: 'file', file: 'confCustom.json', path_from_package_root: 'config_store'});

    // Make 'get' wait until any writes are complete on the file (i.e. lock file released)
    const confAwaitGet = new TypedConfig();
    await confAwaitGet.set('dot.prop.path.to.value', 'hello world');
    const valueAwaitGet = await confAwaitGet.get('dot.prop.path.to.value'); // 'hello world'

    // Let TypeScript hint/autocomplete/check your values
    const confTyped = new TypedConfig<{name: string}>();
    const valueTyped = confTyped.getSync('name'); // Path is now locked to 'name', per given type

    // Use a schema to check values at runtime (and auto infer type)
    const confSchemaBound = new TypedConfig(undefined, undefined, z.object({name: z.string()}));
    const valueSchemaBound = confSchemaBound.get('name'); // Path is locked to 'name'
    // EXPECT FAIL DUE TO NUMBER INSTEAD OF STRING: await confSchemaBound.set('name', 41);
    // EXPECT FAIL DUE TO UNKNOWN KEY: await confSchemaBound.set('other', 'Bob');
    await confSchemaBound.set('name', 'Bob');

    // Use defaults (useful for more complex schemas where values are required)
    const confSchemaBoundAndDefaultsFail = new TypedConfig(undefined, undefined, z.object({name: z.string(), age: z.number()}));
    confSchemaBoundAndDefaultsFail.set('age', 41); // EXPECT FAIL DUE TO NO NAME PROVIDED, BUT SCHEMA REQUIRES
    const confSchemaBoundAndDefaults = new TypedConfig(undefined, {name: 'Alice', age: 40}, z.object({name: z.string(), age: z.number()}));
    confSchemaBoundAndDefaults.set('age', 41); // Works because name was set in default

}

Roadmap

Abstract the storage mechanism with an adapter

E.g. be able to write to Postgres, be Deno native, etc.