An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

[![Build status](https://travis-ci.org/makerbot/botname.svg?branch=master)](https://travis-ci.org/makerbot/botname)
[![Dependencies](https://david-dm.org/makerbot/botname.svg)](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
```