Skip to content

Instantly share code, notes, and snippets.

@anabellaspinelli
Last active September 22, 2018 18:14
Show Gist options
  • Save anabellaspinelli/9991cde32dbb17c8534c9c75f5879d9a to your computer and use it in GitHub Desktop.
Save anabellaspinelli/9991cde32dbb17c8534c9c75f5879d9a to your computer and use it in GitHub Desktop.
Typeform OAuth Tutorial
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