How to serve static files from an asar archive How to serve static files from an asar archive express express

How to serve static files from an asar archive


I had the same problem. It worked for me using relative paths. The static files served by express were kept in the same directory as the file where express initializes. Below you can see a snippet of my working code:

const myStaticPath = './static'app.use('/previewer', express.static(path.join(__dirname, myStaticPath)))

Cheers! Nicu