
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
vite-plugin-envka
Advanced tools
Envka is a vite plugin designed to enhance environment variable management in Vite projects.

Envka is a vite plugin designed to enhance environment variable management in Vite projects.
.env.example from schemanpm install vite-plugin-envka --save-dev
Add to your vite.config.ts:
import envka from "vite-plugin-envka";
export default {
plugins: [envka(/* options */)],
};
import envka from "vite-plugin-envka";
export default {
plugins: [
envka({
schema,
generateTypes: false /** Default */,
}),
],
};
Generating env.d.ts is done after a successful validation. By default, its turned-off. You need to add generateTypes: true to turn it on.
Generating .env.example is done via the CLI
npx env example --schema /path/to/schema/file --output /optional/output
import envka, { envkaValidator } from "vite-plugin-envka";
/** Env schema object should always be default export */
export default envkaValidator({
FOO: { type: "string" },
BAR: {
type: "number",
description: "A comment on your .env.example",
},
TEST_MODE: { type: "enum", enum: ["dev", "prod"] },
});
export default {
plugins: [
envka({
schema: builtinSchema,
generateTypes: true,
}),
],
};
BSD-3 Clause
FAQs
Envka is a vite plugin designed to enhance environment variable management in Vite projects.
We found that vite-plugin-envka 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.