forked from sheetjs/sheetjs
		
	- add BOM to `stream.to_csv` (fixes #1024 h/t @hr5959) - `utils.format_cell` type (h/t @victorj2307) - duktape niggles - demo cleanup
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
#!/usr/bin/env node
 | 
						|
/* xlsx.js (C) 2013-present  SheetJS -- http://sheetjs.com */
 | 
						|
 | 
						|
var fs = require('fs'), path = require('path');
 | 
						|
var express = require('express'), app = express();
 | 
						|
var sprintf = require('printj').sprintf;
 | 
						|
var logit = require('../server/_logit');
 | 
						|
var cors = require('../server/_cors');
 | 
						|
 | 
						|
var port = +process.argv[2] || +process.env.PORT || 7262;
 | 
						|
var basepath = process.cwd();
 | 
						|
 | 
						|
var dir = path.join(__dirname, "files");
 | 
						|
try { fs.mkdirSync(dir); } catch(e) {}
 | 
						|
 | 
						|
app.use(logit.mw);
 | 
						|
app.use(cors.mw);
 | 
						|
app.use(require('express-formidable')({uploadDir: dir}));
 | 
						|
app.post('/upload', function(req, res) {
 | 
						|
	console.log(req.files);
 | 
						|
	var f = req.files[Object.keys(req.files)[0]];
 | 
						|
	var newpath = path.join(dir, f.name);
 | 
						|
	fs.renameSync(f.path, newpath);
 | 
						|
	console.log("moved " + f.path + " to " + newpath);
 | 
						|
	res.end("wrote to " + f.name);
 | 
						|
});
 | 
						|
app.use(express.static(path.resolve(basepath)));
 | 
						|
app.use(require('serve-index')(basepath, {'icons':true}));
 | 
						|
 | 
						|
app.listen(port, function() { console.log('Serving HTTP on port ' + port); });
 | 
						|
 |