
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.
Prompt Vault | A simple, typesafe, file router based prompt management tool.
Keep prompts organized in files. Get full TypeScript support. Replace messy strings with easy auto completion.
> npx prault
Generated prompts.gen.ts
// main.ts
import { initPrault } from 'prault';
const prompts = initPrault()
prompts.test()
// I am a test prompt!
prompts.hello({NAME: "adam"})
// Hello adam
{{{KEY}}} placeholders at runtime# NPM
npm install -g prault
# Deno
deno add jsr:@adavisdev/prault
promt.gen.ts# cli
prault
# npx
npx prault
# deno
deno run -R -W jsr:@adavisdev/prault
prompts directory with .md or .txt files
prompts/
├── greeting.md
├── code-review.md
└── chat/
└── welcome-message.md
npx prault to generate prompts.gen.tsimport { initPrault } from "./prompts.gen.ts";
const prompts = initPrault();
// Get prompts
const greeting = prompts.greeting();
const personalized = prompts.greeting({ NAME: "Alice" });
prompts/greeting.md → prompts.greeting()prompts/code/review.md → prompts.codeReview(){{{KEY}}} for template variablesMIT
FAQs
A TypeScript library for managing and templating prompts from files.
We found that prault 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.