This repository contains the express middleware that can be used to host your own avatars service!
Check out our website for more info on (and an interactive demo of) what this service does.
First, you'll need the adorable-avatars
package:
npm install adorable-avatars --save
Then, use the router middleware within your application:
// your_server.js
import express from 'express';
import avatarsMiddleware from 'adorable-avatars';
const myApp = express();
myApp.use('/myAvatars', avatarsMiddleware);
That's it! Your server now includes the avatars endpoints!
Assuming your server lives at myserver.com
, and you've configured the middleware as above, you now have the following endpoints:
myserver.com/myAvatars/:id
- returns an avatar for the provided
id
. id
can be anything (email, username, md5 hash, as long as it's a valid URI)- defaults to 400px
- returns an avatar for the provided
myserver.com/myAvatars/:size/:id
- returns an avatar for the provided
id
at the specifiedsize
- size cannot exceed 400px
- returns an avatar for the provided
myserver.com/myAvatars/face/:eyes/:nose/:mouth/:color/:size?
- Allows you to generate a custom avatar from the specified parts and color, and size
- e.g.
myserver.com/myAvatars/face/eyes1/nose2/mouth4/DEADBF/300
myserver.com/myAvatars/list
- returns JSON of all valid parts for the custom endpoint above
myserver.com/myAvatars/:size?/random
- returns a random avatar, different each time
- e.g.
myserver.com/myAvatars/300/random
If you're developing locally, you'll first need to bootstrap (assumes nvm):
# use correct node version
nvm use
# install dependencies
npm install
Then, there are several npm scripts that will be useful:
# run the unit tests
npm test
# run both a dev server and eslint
npm run dev
# run a dev server
npm run dev:server
# run eslint
npm run dev:lint
# compile the application
npm run build
Please read the contributors' guide
- Kevin Altman twitter @itg github @itsthaguy: Creator of Adorable Avatars, service, site, and artwork.
- Ryland Herrick github @rylnd: Programmer extraordinaire!
- twitter @missingdink: Illustrated the very first avatars! Check them out!