Created
February 19, 2019 22:17
-
-
Save nomoney4me/4bc3bdd0dc2f8c506aed27ca1e547548 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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