UNPKG

meme-magic

Version:

An A-Frame, React, Redux front-end with Sessions, Websockets, SQL, and Authentication built into the backend.

15 lines (10 loc) 326 B
'use strict'; import express from 'express'; const router = express.Router(); import Memes from '../db/models/memes'; import chalk from 'chalk'; router.get('/', (req, res, next) => { console.log(chalk.green('You are looking for Memes eh?')); res.json({url: 'www.reddit.com'}); }); export default router;