How to write xlsx document with nodejs - node.js

Basically i need write a spreadsheet document in Nodejs with images and formatted text. I found some libraries to write xlsx files but they have bugs and the new document can't be opened neither libreoffice or google drive and Ms Excel do some strange things before open the file.
I tried with:
xlsx
msexcel-builder
msexcel-builder-colorfix
msexcel-builder-extended
Others...
Can someone help me?

https://www.npmjs.com/package/json2xls
try this package, if you find any difficulty then please share you code.

Related

Create excel file from data in csv file with node.js

I am developing MEAN stack application. I get data from a .csv file. Then I need to convert excel file and put the data from .csv file in excel file. This is achievable with multiple npm packages.
However the main problem is that I need to create pre defined excel file (I have excel template which I need to fill with the data)
How can I achieve that? I would be very happy if someone could suggest me some npm package or provide me with some documentation to achieve that with nodejs.
Thank you

VBA and MDB database both in SharePoint. How to set connection?

I am fairly new to coding in VBA so finding this quite complex to resolve.
Background: I have a folder hierarchy in SharePoint with each folder having Excel files. I am trying to copy all the data from the Excels file and store in .mdb database. I have mad an Excel file(VBA) which also has a search functionality querying this database.
Current Situation: I was able to sync this SharePoint to my OneDrive and had access to these files in my WE. I setup the VBA code and the .mdb database in the same directory and was able to achieve this task.
Problem: Other who have access to this SharePoint location are not able to use this search functionality because for them the path does not exist.
Is there any way I can make this work? (I tried following a DriveMapper code but htis doesnt work for me either. Error: Network name cannot be found.)
I am really stuck on it and would appreciate some help. Thank you in advance :)
So i got to find the answer for this query after digging for a while.
fPath = Environ("HOMEDRIVE") + Environ("HOMEPATH") + "....". This way the file path can be dynamically updated to reflect each user's homedrive and path. Hope it helps others seeking similar solution.

NodeJs construct Excel file and export in PDF

As the title said, I'm searching for a NodeJS library to construct Excel (xlsx), with cell format (color, font size, images...). Importantly, it must has the capability of exporting the resulted .xlsx file to .pdf format.
I know some libs that call Excel API but I'm running a linux server and that's impossible for me.
Thanks to jcaron comment I finally found out that I can build a PDF file directly without passing through xls.
I used pdfmaker for nodejs that support creating PDF file pretty well.

How to read all excel and csv formats using node

I am working in building a project management tool,using MEAN(Mongodb,Expressjs,Angularjs,Nodejs) Stack.
I have a requirement in my project, where users will upload any kind of excel or csv format file and i need to parse each row from the file(excel|csv) and map it to my database model and save it has a mongodb document.I am trying to find an excel and csv parser library to accomplish my task.I also came accross xlsx, it looks good but it doesnt support reading csv files.It will be really helpful if any one could suggest a node.js library that can read all kinds of excel and csv file formats efficiently.Thanks in advance
At one point, I used Node CSV https://github.com/wdavidw/node-csv
to get the data inputted, it's really easy to use. Most of my users were fine with just having the CSV format option.....but you could combine the functionality of each library depending on the file type entered.....

How to work with excel files in Node.js

I am new in Node.js development and i don't know how to import excel file in Node.js. And how to display excel data in browser any help related to this will be appreciated Thanks.
Check those links:
https://npmjs.org/package/excel
&
Node.JS/C++/Python - edit Excel .xlsx file
You can browse on npmjs.org to find a package that helps you in it.
For example:
https://npmjs.org/package/excel
Or if you want the raw file, you can also use fs:
http://nodejs.org/api/fs.html

Resources