In Angular 5 (Typescript) web app. How to open an existing Excel file from a hard drive, please?
In my previous Java projects, we used servlets for this. But this is a NodeJS project.
Update:-
I tried other options like below but got chrome error - "Not allowed to load local resource:"
<a href="file://c:/test.xls" target="_blank">Click me!</a>
Are there any serverside options available using NodeJS, Express, etc? Still trying to figure out.