Last active
September 22, 2018 18:14
-
-
Save anabellaspinelli/9991cde32dbb17c8534c9c75f5879d9a to your computer and use it in GitHub Desktop.
Typeform OAuth Tutorial
This file contains hidden or 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 path = require('path') | |
const app = express() | |
app.set('view engine', 'ejs') | |
app.set('views', path.join(__dirname, '/views')) | |
/* Routes */ | |
app.get('/', (req, res) => res.render('home')) | |
app.listen(9010, () => { | |
console.log('app and running at http://localhost:9010') | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment