This commit is contained in:
Paul Trowbridge 2019-01-31 14:19:42 -05:00
parent 03c625b3dc
commit 606c247fb1
3 changed files with 9 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
npm-debug.log

BIN
.index.js.swp Normal file

Binary file not shown.

8
index.js Normal file
View File

@ -0,0 +1,8 @@
const express = require('express');
const server = express();
server.get('/', (req,res) => res.send('hi'))
server.listen(3000,() => console.log('started'))
module.exports = server;