GithubHelp home page GithubHelp logo

config's Introduction

config

github ci github badge gitHub issues

A deno module that helps you load configuration.

โš ๏ธ Warning The examples in this README pull from main. you may want to "pin" to a particular version by using git tags in the URL to direct you at a particular version. For example, to use v1.3.2 of hyperupcall/config, you would want to import https://deno.land/x/[email protected]/mod.ts.

Usage

import { Config } from "https://deno.land/x/config/mod.ts"

// Example
const config = await Config.load({
  file: 'fileName'
})
if (!config) {
  console.log("config is 'undefined' when no config files were found")
}

// Example including defaults
await Config.load({
  file: 'fileName',
  searchDir: Deno.cwd()
})

Options

  • file the name of your file
  • searchDir the directory to start searching. this is the directory that might include a .config file

Priority

The ordering is as follows. Modules are loaded from .config folder first, then the parent to that folder. Rc files in .config never start with a dot.

  • .config/file.config.ts
  • .config/file.config.js
  • .config/file.toml
  • .config/file.json
  • .config/file.yaml
  • .config/file.yml
  • file.config.ts
  • file.config.js
  • .file.toml
  • .file.json
  • .file.yaml
  • .file.yml

config's People

Contributors

hyperupcall avatar stav avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

config's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.