Skip to content

Instantly share code, notes, and snippets.

@debasreedash
debasreedash / gist:33efd4473ba8b344a5ac
Created February 2, 2015 20:25
conversion from excel to json
var convertJson = require('convert-json');
exports.convertXLSXToJson = function(req, res) {
var path = fileServerPath + req.body.name;
console.log("in method req.body: " + path);
try
{
console.log("Going to convert...");
convertJson.xlsx(path, {header:true}, function(err, result) {