Generates random, unidentifiable names for any purpose
npm i anonymus --save
Include this line in your HTML (preferably in the body; here's why) and you can obtain anonymus via the jsDelivr CDN:
<script src="https://cdn.jsdelivr.net/npm/anonymus@1"></script>
or the unpkg CDN:
<script src="https://unpkg.com/anonymus@1"></script>
or you can download the latest version of anonymus here.
const anonymus = require("anonymus");
console.log(anonymus.create());
//=> ['Orange panda']
console.log(anonymus.create());
//=> ['Green hawk']
console.log(anonymus.create());
//=> ['Blue sheep']
console.log(anonymus.create(5));
//=> ['Red hummingbird',
// 'White frog',
// 'Pink jellyfish',
// 'Sapphire kangaroo',
// 'Black dog']
console.log(anonymus.create(anonymus.sizeMax));
//=> Creates all unique possibilities.
You can read the upgrade guide here.
You can read the changelog here.
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
This project is licensed under the GPL-3.0 License - see here for more details.