anonymus
Version:
Generates random, unidentifiable names for any purpose
76 lines (59 loc) • 2.76 kB
Markdown
# anonymus
Generates random, unidentifiable names for any purpose
[](https://travis-ci.org/Bikossor/anonymus)
[](https://www.codacy.com/app/Bikossor/anonymus?utm_source=github.com&utm_medium=referral&utm_content=Bikossor/anonymus&utm_campaign=Badge_Grade)





## Installation
### Node.js environment
```
npm i anonymus --save
```
### Browser environment
Include this line in your HTML (preferably in the body; [here's why](https://www.w3schools.com/js/js_whereto.asp)) and you can obtain anonymus via the jsDelivr CDN:
```html
<script src="https://cdn.jsdelivr.net/npm/anonymus@1"></script>
```
or the unpkg CDN:
```html
<script src="https://unpkg.com/anonymus@1"></script>
```
or you can download the latest version of anonymus [here](https://github.com/Bikossor/anonymus/releases/latest).
## Usage
### Node.js environment
```javascript
const anonymus = require("anonymus");
```
### Node.js environment + Browser environment
```javascript
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.
```
## Upgrading
You can read the upgrade guide [here](UPGRADING.md).
## Changelog
You can read the changelog [here](CHANGELOG.md).
## Contributing
Please read [CONTRIBUTING.md](https://gist.github.com/PurpleBooth/b24679402957c63ec426) for details on our code of conduct, and the process for submitting pull requests to us.
## Versioning
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags](https://github.com/bikossor/anonymus/tags) on this repository.
## Authors
- [Bikossor](https://github.com/Bikossor)
See also the list of [contributors](https://github.com/bikossor/anonymus/contributors) who participated in this project.
## License
This project is licensed under the GPL-3.0 License - see [here](LICENSE) for more details.