Skip to content

Commit

Permalink
The version app for GE 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rsriniva committed Sep 19, 2019
1 parent f114b5b commit 06547e4
Show file tree
Hide file tree
Showing 3 changed files with 405 additions and 0 deletions.
17 changes: 17 additions & 0 deletions version/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const express = require('express');
app = express();

var response;

app.get('/', function (req, res) {

response = 'This is version 1 of the app.' + '\n';

//send the response to the client
res.send(response);

});

app.listen(8080, function () {
console.log('Server listening on port 8080...');
});
374 changes: 374 additions & 0 deletions version/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 06547e4

Please sign in to comment.