Skip to content

Instantly share code, notes, and snippets.

@nomoney4me
Created February 19, 2019 22:17
Show Gist options
  • Save nomoney4me/4bc3bdd0dc2f8c506aed27ca1e547548 to your computer and use it in GitHub Desktop.
Save nomoney4me/4bc3bdd0dc2f8c506aed27ca1e547548 to your computer and use it in GitHub Desktop.
const express = require('express');
const app = express();
const api_key = 'something so secret that you are hiding from your viewer';
app.get('/', (req, res) => {
res.send('hello there')
})
app.listen(3000, console.log('listening on 3000');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment