Socket
Book a DemoInstallSign in
Socket

hyperconf

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hyperconf

Always available, remotely updateable config

latest
Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
1K
19.13%
Maintainers
2
Weekly downloads
 
Created
Source

hyperconf

Always available, remotely updateable config

npm install hyperconf

Usage

First build a spec, see example.js

Then use it

const Hyperconf = require('hyperconf')
const spec = require('./spec/hyperconf')

// core is the core that contains future versions of the spec
const conf = new Hyperconf(spec, core, { minLength: 0, production: true })

await conf.ready()
console.log(conf.current) // <-- current config, always set

conf.on('update', () => {
  console.log('conf updated', conf.current)
})

License

Apache-2.0

FAQs

Package last updated on 01 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts