https://github.com/makerbot/botname
Random name generator for your printer
https://github.com/makerbot/botname
Last synced: 5 months ago
JSON representation
Random name generator for your printer
- Host: GitHub
- URL: https://github.com/makerbot/botname
- Owner: makerbot
- License: mit
- Created: 2015-07-12T01:32:09.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-11-16T22:28:10.000Z (over 10 years ago)
- Last Synced: 2025-12-21T23:49:19.055Z (6 months ago)
- Language: JavaScript
- Size: 354 KB
- Stars: 3
- Watchers: 22
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/makerbot/botname)
[](https://david-dm.org/makerbot/botname)
Very simple to use!
Simply install the package globally `npm install -g botname` then type `botname` in the terminal.
```sh
npm install -g botname
botname
# You could name your printer: CelebratoryBot
botname -n
# CelebratoryBot
```
You can also include the package in your own app. First, `npm install --save botname`, then:
```js
var botname = require('botname');
console.log(botname()); // Output: CelebratoryBot
```