• Stars
    star
    367
  • Rank 112,365 (Top 3 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created over 2 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

⚙️ Smart Configuration Loader

⚙️ c12

npm version npm downloads Codecov License

Smart Configuration Loader.

Features

Usage

Install package:

# npm
npm install c12

# yarn
yarn add c12

# pnpm
pnpm install c12

Import:

// ESM
import { loadConfig, watchConfig } from "c12";

// CommonJS
const { loadConfig, watchConfig } = require("c12");

Load configuration:

// Get loaded config
const { config } = await loadConfig({});

// Get resolved config and extended layers
const { config, configFile, layers } = await loadConfig({});

Loading priority

c12 merged config sources with unjs/defu by below order:

  1. Config overrides passed by options
  2. Config file in CWD
  3. RC file in CWD
  4. Global RC file in the user's home directory
  5. Config from package.json
  6. Default config passed by options
  7. Extended config layers

Options

cwd

Resolve configuration from this working directory. The default is process.cwd()

name

Configuration base name. The default is config.

configFile

Configuration file name without extension. Default is generated from name (f.e., if name is foo, the config file will be => foo.config).

Set to false to avoid loading the config file.

rcFile

RC Config file name. Default is generated from name (name=foo => .foorc).

Set to false to disable loading RC config.

globalRC

Load RC config from the workspace directory and the user's home directory. Only enabled when rcFile is provided. Set to false to disable this functionality.

dotenv

Loads .env file if enabled. It is disabled by default.

packageJson

Loads config from nearest package.json file. It is disabled by default.

If true value is passed, c12 uses name field from package.json.

You can also pass either a string or an array of strings as a value to use those fields.

defaults

Specify default configuration. It has the lowest priority and is applied after extending config.

defaultConfig

Specify default configuration. It is applied before extending config.

overrides

Specify override configuration. It has the highest priority and is applied before extending config.

jiti

Custom unjs/jiti instance used to import configuration files.

jitiOptions

Custom unjs/jiti options to import configuration files.

envName

Environment name used for environment specific configuration.

The default is process.env.NODE_ENV. You can set envName to false or an empty string to disable the feature.

Extending configuration

If resolved config contains a extends key, it will be used to extend the configuration.

Extending can be nested and each layer can extend from one base or more.

The final config is merged result of extended options and user options with unjs/defu.

Each item in extends is a string that can be either an absolute or relative path to the current config file pointing to a config file for extending or the directory containing the config file. If it starts with either github:, gitlab:, bitbucket:, or https:, c12 automatically clones it.

For custom merging strategies, you can directly access each layer with layers property.

Example:

// config.ts
export default {
  colors: {
    primary: "user_primary",
  },
  extends: ["./theme"],
};
// config.dev.ts
export default {
  dev: true,
};
// theme/config.ts
export default {
  extends: "../base",
  colors: {
    primary: "theme_primary",
    secondary: "theme_secondary",
  },
};
// base/config.ts
export default {
  colors: {
    primary: 'base_primary'
    text: 'base_text'
  }
}

The loaded configuration would look like this:

{
  dev: true,
  colors: {
    primary: 'user_primary',
    secondary: 'theme_secondary',
    text: 'base_text'
  }
}

Layers:

[
 { config: /* theme config */, configFile: /* path/to/theme/config.ts */, cwd: /* path/to/theme */ },
 { config: /* base  config */, configFile: /* path/to/base/config.ts  */, cwd: /* path/to/base */ },
 { config: /* dev   config */, configFile: /* path/to/config.dev.ts  */, cwd: /* path/ */ },
]

Environment-specific configuration

Users can define environment-specific configuration using these config keys:

  • $test: {...}
  • $development: {...}
  • $production: {...}
  • $env: { [env]: {...} }

c12 tries to match envName and override environment config if specified.

Note: Environment will be applied when extending each configuration layer. This way layers can provide environment-specific configuration.

Example:

{
  // Default configuration
  logLevel: 'info',

  // Environment overrides
  $test: { logLevel: 'silent' },
  $development: { logLevel: 'warning' },
  $production: { logLevel: 'error' },
  $env: {
    staging: { logLevel: 'debug' }
  }
}

Watching Configuration

you can use watchConfig instead of loadConfig to load config and watch for changes, add and removals in all expected configuration paths and auto reload with new config.

Lifecycle hooks

  • onWatch: This function is always called when config is updated, added, or removed before attempting to reload the config.
  • acceptHMR: By implementing this function, you can compare old and new functions and return true if a full reload is not needed.
  • onUpdate: This function is always called after the new config is updated. If acceptHMR returns true, it will be skipped.
import { watchConfig } from "c12";

const config = watchConfig({
  cwd: ".",
  // chokidarOptions: {}, // Default is { ignoreInitial: true }
  // debounce: 200 // Default is 100. You can set it to false to disable debounced watcher
  onWatch: (event) => {
    console.log("[watcher]", event.type, event.path);
  },
  acceptHMR({ oldConfig, newConfig, getDiff }) {
    const diff = getDiff();
    if (diff.length === 0) {
      console.log("No config changed detected!");
      return true; // No changes!
    }
  },
  onUpdate({ oldConfig, newConfig, getDiff }) {
    const diff = getDiff();
    console.log("Config updated:\n" + diff.map((i) => i.toJSON()).join("\n"));
  },
});

console.log("watching config files:", config.watchingFiles);
console.log("initial config", config.config);

// Stop watcher when not needed anymore
// await config.unwatch();

💻 Development

  • Clone this repository
  • Enable Corepack using corepack enable (use npm i -g corepack for Node.js < 16.10)
  • Install dependencies using pnpm install
  • Run interactive tests using pnpm dev

License

Made with 💛 Published under MIT License.

More Repositories

1

consola

🐨 Elegant Console Logger for Node.js and Browser
TypeScript
5,424
star
2

nitro

Next Generation Server Toolkit. Create web servers with everything you need and deploy them wherever you prefer.
TypeScript
4,941
star
3

magic-regexp

A compiled-away, type-safe, readable RegExp alternative
TypeScript
3,531
star
4

ofetch

😱 A better fetch API. Works on node, browser and workers.
TypeScript
3,106
star
5

h3

⚡️ Minimal H(TTP) framework built for high performance and portability
TypeScript
2,910
star
6

unplugin

Unified plugin system for Vite, Rollup, Webpack, esbuild, rolldown, and more
TypeScript
2,799
star
7

magicast

🧀 Programmatically modify JavaScript and TypeScript source codes with a simplified, elegant and familiar syntax powered by recast and babel.
TypeScript
2,112
star
8

webpackbar

Elegant ProgressBar and Profiler for Webpack 3 , 4 and 5
TypeScript
2,041
star
9

unbuild

📦 An unified javascript build system
TypeScript
1,989
star
10

unstorage

💾 Unstorage provides an async Key-Value storage API with conventional features like multi driver mounting, watching and working with metadata, dozens of built-in drivers and a tiny core.
TypeScript
1,406
star
11

fontaine

Automatic font fallback based on font metrics
TypeScript
1,388
star
12

jiti

Runtime Typescript and ESM support for Node.js
TypeScript
1,284
star
13

ipx

🖼️ High performance, secure and easy-to-use image optimizer.
TypeScript
1,070
star
14

destr

🚀 Faster, secure and convenient alternative for JSON.parse
TypeScript
894
star
15

ufo

🔗 URL utils for humans
TypeScript
888
star
16

untun

🚇 Tunnel your local HTTP(s) server to the world! powered by Cloudflare Quick Tunnels.
TypeScript
853
star
17

defu

🌊 Assign default properties recursively
TypeScript
828
star
18

changelogen

💅 Beautiful Changelogs using Conventional Commits
TypeScript
745
star
19

hookable

🪝 Awaitable Hooks
TypeScript
593
star
20

citty

🌆 Elegant CLI Builder
TypeScript
533
star
21

unhead

Unhead is the any-framework document head manager built for performance and delightful developer experience.
TypeScript
501
star
22

ohash

Super fast hashing library based on murmurhash3 written in Vanilla JS
JavaScript
460
star
23

unimport

Unified utils for auto importing APIs in modules.
TypeScript
433
star
24

uqr

Generate QR Code universally, in any runtime, to ANSI, Unicode or SVG.
TypeScript
401
star
25

mlly

🤝 Common ECMAScript module utils
TypeScript
398
star
26

ungh

🐙 Unlimited access to github API
TypeScript
383
star
27

nypm

🌈 Unified Package Manager for Node.js and Bun
TypeScript
379
star
28

std-env

Runtime Agnostic JS utils
TypeScript
373
star
29

untyped

Generate types and markdown from a config object.
TypeScript
372
star
30

listhen

👂 Elegant HTTP Listener
TypeScript
363
star
31

giget

✨ Download templates and git repositories with pleasure!
TypeScript
353
star
32

radix3

🌳 Lightweight and fast router for JavaScript based on Radix Tree
TypeScript
348
star
33

unctx

🍦 Composables in vanilla JS
TypeScript
348
star
34

pathe

🛣️ Drop-in replacement of the Node.js's path module module that ensures paths are normalized
TypeScript
332
star
35

mkdist

Lightweight file-to-file transpiler.
TypeScript
304
star
36

unpdf

📄 Utilities to work with PDFs in Node.js, browser and workers
TypeScript
284
star
37

unenv

🕊️ Convert javaScript code to be runtime agnostic
TypeScript
282
star
38

scule

🧵 String Case Utils
TypeScript
268
star
39

knitwork

Utilities to generate JavaScript code.
TypeScript
224
star
40

rc9

Read/Write config couldn't be easier!
TypeScript
216
star
41

get-port-please

🔌 Get an available open port
TypeScript
204
star
42

lmify

🤙 Install NPM dependencies programmatically (please switch to unjs/nypm)
JavaScript
200
star
43

theme-colors

🎨 Easily generate color shades for themes
TypeScript
185
star
44

runtime-compat

Display APIs compatibility across different JavaScript runtimes
Vue
185
star
45

perfect-debounce

Debounce promise-returning & async functions.
TypeScript
171
star
46

pkg-types

Node.js utilities and TypeScript definitions for package.json and tsconfig.json
TypeScript
170
star
47

unkit

📙 UnJS standard library
TypeScript
168
star
48

crossws

🔌 Cross-platform WebSocket Servers for Node.js, Deno, Bun and Cloudflare Workers.
TypeScript
167
star
49

uncrypto

Single API for Web Crypto API and Crypto Subtle working in Node.js, Browsers and other runtimes
TypeScript
154
star
50

httpxy

🔀 A Full-Featured HTTP and WebSocket Proxy for Node.js
TypeScript
149
star
51

serve-placeholder

♡ Smart placeholder for missing assets
TypeScript
144
star
52

node-fetch-native

better fetch for Node.js. Works on any JavaScript runtime!
TypeScript
141
star
53

template

📋 UnJS Project Starter Template
TypeScript
136
star
54

unwasm

🇼 WebAssembly tools for JavaScript
JavaScript
128
star
55

website

UnJS website Content and Design!
Vue
116
star
56

db0

📚 Lightweight SQL Connector
TypeScript
111
star
57

mongoz

🥭 Zero Config MongoDB Server
TypeScript
102
star
58

automd

🤖 Automated markdown maintainer
TypeScript
100
star
59

cookie-es

🍪 Cookie Serializer and Deserializer
TypeScript
97
star
60

redirect-ssl

Connect/Express middleware to enforce https using is-https
TypeScript
96
star
61

jimp-compact

✏️ Lightweight version of Jimp -- An image processing library written entirely in JavaScript for Node.js
TypeScript
91
star
62

nanotar

📼 Tiny and fast tar utils for any JavaScript runtime!
TypeScript
80
star
63

undocs

Minimal Documentation theme and CLI for shared usage across UnJS projects.
Vue
76
star
64

mdbox

⬇ Just simple markdown utils
JavaScript
58
star
65

items-promise

Bare minimum async methods using promises
JavaScript
51
star
66

image-meta

Detect image type and size using pure javascript.
TypeScript
51
star
67

nitro-deploys

Nitro Deployments Testing
TypeScript
45
star
68

compat-flags

🌴 Gradual feature flags.
TypeScript
45
star
69

confbox

Compact and high quality YAML, TOML, JSONC and JSON5 parsers
TypeScript
38
star
70

ezpass

Dead simple password protection middleware
TypeScript
33
star
71

workbox-cdn

Workbox Unofficial CDN and standalone NPM package.
Shell
30
star
72

rollup-plugin-node-deno

Convert NodeJS to Deno compatible code with rollup
TypeScript
29
star
73

externality

TypeScript
28
star
74

create-require

Polyfill for Node.js module.createRequire (<= v12.2.0)
JavaScript
27
star
75

requrl

Grab full URL from request.
TypeScript
26
star
76

is-https

Check if the given request is HTTPS
TypeScript
26
star
77

bundle-runner

Run webpack bundles in Node.js with optional VM sandboxing
TypeScript
21
star
78

eslint-config

📖 Shared ESLint config for unjs repositories
JavaScript
20
star
79

fs-memo

Easy persisted memo object for Node.js
TypeScript
18
star
80

nitro-starter

Nitro starter template
TypeScript
16
star
81

nitro-preset-starter

TypeScript
15
star
82

governance

UnJS Governance Notes
14
star
83

community

UnJS Community Notes
14
star
84

renovate-config

13
star
85

.github

Community Health Files
8
star
86

unjs.github.io

HTML
4
star
87

html-validate-es

TypeScript
4
star