
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@esconf/core
Advanced tools
配置文件加载工具
API 设计参考自 antfu/unconfig
esconf 在使用时更像 unocss 需要 core + presets 形式组合
# ✨ Auto-detect
npx nypm install @esconf/core
# npm
npm install @esconf/core
# yarn
yarn add @esconf/core
# pnpm
pnpm install @esconf/core
# bun
bun install @esconf/core
# deno
deno install @esconf/core
import { loadConfig } from '@esconf/core'
import { jsParser, tomlParser, tsParser, yamlParser } from '@esconf/preset-mini'
const config = await loadConfig({
// 数组越靠前配置文件的优先级越高
layers: [
{
// load from vrx.config.{mts,ts}
files: ['vrx.config'],
extensions: ['mts', 'ts'],
parser: tsParser(),
},
{
// load from vrx.config.{js,mjs}
files: ['vrx.config'],
extensions: ['js', 'mjs'],
parser: jsParser(),
},
{
// load from vrx.{yaml,yml}
files: ['vrx'],
extensions: ['yaml', 'yml'],
parser: yamlParser(),
},
{
name: 'toml',
// load from vrx.toml
files: ['vrx'],
extensions: ['toml'],
parser: tomlParser(),
},
],
// 配置默认值
default: { defaultValue: 'value' },
cwd: process.cwd(),
// 如果某个 layer 命名了,可以用 layer 的名称在运行时排除
excludeLayer: ['toml'],
// 如果 excludeLayer 的 类型时 funcition ,则可以根据 layer 配置的特征自行决定运行时是否排除
excludeLayer: (layer) => layer.extensions.includes('yaml')
})
Published under the MIT license.
Made by @Colourlessglow and community 💛
🤖 auto updated with automd
FAQs
The npm package @esconf/core receives a total of 11 weekly downloads. As such, @esconf/core popularity was classified as not popular.
We found that @esconf/core demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.