I would like to unzip a .zip file in node without any libraries. How would i go about doing this?
I have tried using zlib but it returns incorrect header type
let zipfile = fs.readFileSync(fileinfomation.savelocation)
zlib.gunzipSync(zipfile)
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
I would like to unzip a .zip file in node without any libraries. How would i go about doing this?
I have tried using zlib but it returns incorrect header type
let zipfile = fs.readFileSync(fileinfomation.savelocation)
zlib.gunzipSync(zipfile)