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

d-config

v0.1.0-beta.0

Published

## Install

Downloads

6

Readme

d-config

Install

$ npm install -S d-config

or

$ yarn add d-config

Usage

CLI

CLI での validator ファイル生成を事前に行います。

Usage: npx d-config [options] [path/to/config/type]

Options:
  --top-level
    引数に指定されたファイル内で config として使用するトップレベルの型名を指定します
  --out
    生成した TypeScript ファイルの出力先を指定します
  --out-js
    生成した JavaScript ファイルの出力先を指定します
  --overwrite
    生成した TypeScript ファイルを、引数に指定した config ファイルに上書きします。--out/--out-js よりも優先されます
    指定ファイルで export されている interface/type/class 以外のコードは消滅し、生成された validation 関数が追加されます
      type は interface に変換されます
    上記の問題を避けるために上書きしたくない場合は、 `--out` で別ディレクトリを指定するか、 `--out-js` オプションを指定し、実行時に `useJsVaidator` を指定してください

Example:
  $ npx d-config ./path/to/config/type.ts --top-level Config --overwrite
  $ npx d-config ./path/to/config/type.ts --top-level Config --out-js config/validator.js

API

import { configure } from 'd-config';

const config = configure();

オプションは以下の通りです。

validator: Config => Config (default: null)
  config を渡す validation 関数を指定します。通常、 cli で生成されたファイルを指定してください
  useJsValidator より優先されます。また、 validator か useJsValidator のうち片方は必須パラメータとなります
deepMerge: boolean (default: false)
  true の場合、環境別 config を default を deepmerge します
allowMergeObject: boolean (default: true)
  deemMerge: true の場合のみ有効
  true の場合、 deepmerge ライブラリと同様の挙動になります
  false の場合、deepmerge 時に Object をマージしません(deepmerge の option isMergeableObject に空関数を渡した場合と同様)
allowTypeError: boolean (default: false)
  [production 非推奨] alidator による実行時型チェックを無視します
useJsValidator: boolean (default: false)
  D_CONFIG_VALIDATOR (defualt: config/validator.js) を動的に require し configure 時に validation を実行します

Example

Basic

$ npx d-config ./path/to/config/type.ts --top-level Config --overwrite
import { configure } from 'd-config';
import { toConfig as validator } from './path/to/config/type';

const config = configure({ validator });

Use deepmerge but not merge Object

$ npx d-config ./path/to/config/type.ts --top-level Config --overwrite
import { configure } from 'd-config';
import { toConfig as validator } from './path/to/config/type';

const config = configure({
  validator,
  deepMerge: true,
  allowMergeObject: false,
});

Use JS validator

$ npx d-config ./path/to/config/type.ts --top-level Config --out-js config/validator.js
import { configure } from 'd-config';

const config = configure({ useJsValidator: true });