Skip to content

Commit 6aa8f90

Browse files
committed
updating single page web app tutorial
1 parent e747460 commit 6aa8f90

File tree

6 files changed

+950
-0
lines changed

6 files changed

+950
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
const http = require('http');
2+
const express = require("express");
3+
const app = express();
4+
var port = 8000;
5+
6+
app.use(express.static("public"));
7+
8+
app.listen(port, function () {
9+
console.log('Starting the Node.js server for this sample. Navigate to http://localhost:'+port+'/ to view the webpage.');
10+
});

Tutorials/Bing-Image-Search/single-page-webapp/package-lock.json

Lines changed: 373 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)