Skip to content

Commit

Permalink
gae ace adedd
Browse files Browse the repository at this point in the history
  • Loading branch information
ankit25587 committed Mar 23, 2022
1 parent dffd86a commit c0bff9b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
runtime: nodejs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "nodejs-getting-started",
"scripts": {
"start": "node server.js"
},
"engines": {
"node": "10.x.x"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
var http = require('http');
var handleRequest = function(request, response) {
response.writeHead(200);
response.end("<h1>Hello World from GAE </h1>");
}
var www = http.createServer(handleRequest);
www.listen(8080);

0 comments on commit c0bff9b

Please sign in to comment.