mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
var http = require('http');
|
|
var fs = require('fs');
|
|
|
|
http.createServer(function (req, res) {
|
|
var filename = /\/([^/]+\.json)$/.exec(req.url);
|
|
if (!filename) {
|
|
filename = 'dat-gui.json';
|
|
} else {
|
|
filename = filename[1];
|
|
}
|
|
switch(req.method) {
|
|
case 'GET':
|
|
if (!fs.existsSync(filename)) {
|
|
res.writeHead(404);
|
|
res.end();
|
|
return
|
|
}
|
|
res.writeHead(200, {'Content-Type': 'application/json', 'Access-Control-Allow-Origin': 'http://localhost'});
|
|
res.end(fs.readFileSync(filename, 'utf8'));
|
|
break;
|
|
case 'POST':
|
|
var data = '';
|
|
req.on('data', function(d) {data += d;})
|
|
req.on('end', function() {
|
|
res.writeHead(200, {'Access-Control-Allow-Origin': 'http://localhost'});
|
|
fs.writeFileSync(filename, data);
|
|
res.end();
|
|
})
|
|
break;
|
|
default:
|
|
res.writeHead(404);
|
|
res.end();
|
|
}
|
|
}).listen(7999);
|