New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

avataria

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

avataria

A package for generating random avatars for Open DnD

latest
npmnpm
Version
0.4.1
Version published
Weekly downloads
6
50%
Maintainers
1
Weekly downloads
 
Created
Source

Avataria

NPM

This is a tool for randomly generating avatars for use in character sheets.

Installation

You will need node and npm installed. Then do:

npm install -g avataria

Generate an Avatar

avataria

Once you have installed avataria you can generate an avatar by simply running the following:

Options

race

avataria --race human

Currently there are 9 race available:

Dragonborn

dragonborn-maledragonborn-female

Dwarf

dwarf-maledwarf-female

Elf

elf-maleelf-female

Gnome

gnome-malegnome-female

Half-Elf

half-elf-malehalf-elf-female

Half-Orc

half-orc-malehalf-orc-female

Halfling

halfling-malehalfling-female

Human

human-malehuman-female

Tiefling

tiefling-maletiefling-female

Gender

avataria --gender male

You can specify a gender by setting either male or female

Module Usage

const Avataria = require('avataria');

// specify options, none are required
const opts = {
  race: 'Human',
  gender: 'male',
};

// call the method
const avataria = new Avataria();
const avatar = avataria.generate(opts);

Options

  • Race: defaults to random, you can set the race to any available
  • Gender: defaults to random, you can set the gender to either male or female

License

MIT

Keywords

avatar

FAQs

Package last updated on 18 Jul 2018

Did you know?

Socket

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.

Install

Related posts