Awyisser is a simple ”aw yiss” comic generator built with Next.js.
Visit awyisser.com if all you want to do is generate a comic and copy/paste/save it to use elsewhere.
awyisser.com exposes a public API that can be used to generate new comics. I make no promises to the long-term stability and availability of this API.
curl https://www.awyisser.com/api/generator \
-X POST \
-H "Content-Type: application/json" \
-d {"value": "aw yiss comic generator"}
}
Request body
value
(required): A string between 1-40 characters. Not all characters are supported. Prefer alphanumeric and basic punctuation.sfw
(optional): Set to true to return ”mutha freakin” instead of ”mutha fuckin” depending on sensibilities. Defaults to false.
Success response
- Code: 200
- Content:
{ image: string }
Image is returned as a base64 encoded png data string.
Clone this repo and run npm install
. Then, run the development server:
npm run dev
Open http://localhost:3000 with your browser to see the result.