
Security News
pnpm 11.5 Adds Support for Recognizing npm Staged Publishes
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.
@masterarthur/config
Advanced tools
Lightweight zero-dependecy Javascript library for easy configuration for nodejs apps
npm i @masterarthur/config
import { config } from "@masterarthur/config";
import mongoose from "mongoose";
const connectionString = config("MONGODB_URL");
await mongoose.connect(connectionString);
import { makeConfig } from "@masterarthur/config";
import express from "express";
const config = await makeConfig(".env");
const app = express();
// process.env.APP_PORT = "3000"
const port = config("APP_PORT"); // 3000
app.get("/", (req, res) => {
res.send("Hello World!");
});
app.listen(port, () => {
console.log(`Example app listening on port ${port}`);
});
Also you can use require
const { config } = require("@masterarthur/config");
const data = config({
path: "PAYLOAD",
defaultValue: "{}",
cast: JSON.parse,
validate: (value) => !Array.isArray(value),
autocast: false,
});
By default config function uses process.env to get data and you are able to use it two ways:
Inline
function config<T>(
path: string,
defaultValue?: string,
cast?: (value: string) => T,
validate?: ValidateFunction,
autocast?: boolean
): T;
Using object to pass arguments in any order
function config<T>(params: {
path: string;
defaultValue?: string;
cast?: (value: string) => T;
validate?: ValidateFunction;
autocast?: boolean;
}): T;
| Param | Type | Description |
|---|---|---|
| path | string | key of value |
| defaultValue | string | default value env variable |
| cast | Function | function that casts string value of env variable to type we need |
| validate | Function | Function that validates casted value and if it returns false config function will throw error |
| autocast | boolean | by default true, if it's true config function will automaticly cast value of env variable to number/boolean/null/undefined |
| Param | Type | Description |
|---|---|---|
| filename | PathLike | Path to configuration file |
| parser | Function or AsyncFunction | by default parses .env and .json files, in case you need parse custom file type you need pass your own parser |
FAQs
Simple config management library
We found that @masterarthur/config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.