Site
- starting pong game 3d
This commit is contained in:
11
site/node_modules/stats/test/fixtures/http.js
generated
vendored
Normal file
11
site/node_modules/stats/test/fixtures/http.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
/**
|
||||
* Module dependencies.
|
||||
*/
|
||||
|
||||
var http = require('http');
|
||||
|
||||
http.createServer(function(req, res){
|
||||
res.setHeader('Content-Type', 'text/plain');
|
||||
res.end('Hello World\n');
|
||||
}).listen(3000);
|
Reference in New Issue
Block a user