
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@opendnd/personae
Advanced tools
This tool is used to generate a person either NPC or playable characters for D&D.
You will need node and npm installed. Then run the command:
npm install -g personae
personae
Follow the prompts, choosing: PC, NPC, culture, name, etc (all optional), and personae will generate a description of the person as well as abilities. You can save the person, or start over.
Require personae into your file and create a new Personae class.
const Personae = require('personae');
const person = new Personae();
const options = {
name: 'Dan',
alignment: 'Chaotic Neutral',
klass: 'Ranger',
age: '300',
race: 'Dwarf',
theme: 'classical',
};
const brotherOpts = {
name: 'Li',
gender: 'male',
};
const dan = person.generate(options);
const parentsOfDan = person.generateParents(dan);
const brother = person.generateChild(brotherOpts, parentsOfDan.mother, parentsOfDan.father);
While configuring your character's options please note that in JavaScript 'class' is a special keyword, so personae uses 'klass'.
Personae can create a NPC or PC for Dungeons and Dragons, as well as abilities, children and parents for your character.
To develop personae,
git clone https://github.com/opendnd/personae.git
cd personae/
npm install
If you'd like to contribute, please fork the repository and use a feature branch. Pull requests are welcome!
Personae use the Airbnb javascript style.
FAQs
This tool is used to generate a person either NPC or other Edit
We found that @opendnd/personae 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.