We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3c50ef commit 2f6b898Copy full SHA for 2f6b898
bootstrap.js
@@ -18,6 +18,8 @@ http.createServer(function (request, response) {
18
19
var urlParts = url.parse(request.url);
20
21
+ //console.log(urlParts);
22
+
23
if (urlParts.pathname.split('.').pop() === 'js') {
24
25
// not secure but this is a prototype
@@ -41,8 +43,6 @@ http.createServer(function (request, response) {
41
43
42
44
} else {
45
- console.log(urlParts);
-
46
switch(urlParts.pathname) {
47
case '/':
48
fs.readFile('client/index.html', function(error, html) {
0 commit comments