New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@aux4/config

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aux4/config

Configuration Manager

latest
Source
npmnpm
Version
1.0.3
Version published
Weekly downloads
7
Maintainers
1
Weekly downloads
 
Created
Source

@aux4/config

Install

npme install --global @aux4/config

Usage

Create Configuration File

It can be a YAML or JSON file.

config.yaml

config:
  dev:
    host: localhost
    port: 3000
  prod:
    host: aux4.io
    port: 80

config.json

{
  "config": {
    "dev": {
      "host": "localhost",
      "port": 3000
    },
    "prod": {
      "host": "aux4.io",
      "port": 80
    }
  }
}

Get configuration

$ aux4-config --file config.yaml --name dev

{
  "host": "localhost",
  "port": 3000
}
$ aux4-config --file config.yaml --name dev/host

localhost

Keywords

aux4

FAQs

Package last updated on 13 Oct 2023

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