Skip to content

Instantly share code, notes, and snippets.

@hiranya911
Created August 4, 2021 23:03
Show Gist options
  • Save hiranya911/8e5ec320ac2bb116d6a7685c83a18895 to your computer and use it in GitHub Desktop.
Save hiranya911/8e5ec320ac2bb116d6a7685c83a18895 to your computer and use it in GitHub Desktop.
const express = require('express');
const app = express();
app.get('/quotes', async (req, res) => {
const data = await callExternalService();
res.json(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment