
Research
Shai-Hulud Descends to Hades: Miasma Worm Campaign Spreads with New PyPI Wave
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.
@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
The npm package @masterarthur/config receives a total of 7 weekly downloads. As such, @masterarthur/config popularity was classified as not popular.
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.

Research
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

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.