mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
Added node-modules
This commit is contained in:
18
node_modules/mongoose/static.js
generated
vendored
Normal file
18
node_modules/mongoose/static.js
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
var static = require('node-static');
|
||||
var server = new static.Server('.', { cache: 0 });
|
||||
|
||||
require('http').createServer(function (req, res) {
|
||||
req.on('end', function () {
|
||||
server.serve(req, res, function (err) {
|
||||
if (err) {
|
||||
console.error(err, req.url);
|
||||
res.writeHead(err.status, err.headers);
|
||||
res.end();
|
||||
}
|
||||
});
|
||||
});
|
||||
req.resume();
|
||||
}).listen(8088);
|
||||
|
||||
console.error('now listening on localhost:8088');
|
Reference in New Issue
Block a user