Skip to content

Instantly share code, notes, and snippets.

@magemore
Created February 8, 2017 07:43
Show Gist options
  • Save magemore/bc05ffc81f36a1f5cbdea1becd27efec to your computer and use it in GitHub Desktop.
Save magemore/bc05ffc81f36a1f5cbdea1becd27efec to your computer and use it in GitHub Desktop.
xlsxj = require('xlsx-to-json');
xlsxj({
input: 'p.xlsx',
output: 'php-books.json'
}, function(err, result) {
if (err) {
console.log(err);
}
else {
console.log(result);
}
});
~
~
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment