Skip to content

Instantly share code, notes, and snippets.

@TheNoim
Created July 8, 2018 17:24
Show Gist options
  • Save TheNoim/a003b019bf123ff0a7d6ac0bcb9dde02 to your computer and use it in GitHub Desktop.
Save TheNoim/a003b019bf123ff0a7d6ac0bcb9dde02 to your computer and use it in GitHub Desktop.
Express test for ios
const express = require('express')
const app = express()
app.get('/', (req, res) => res.send('Hello World!'))
app.listen(3000, () => console.log('Example app listening on port 3000!'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment