DEV Community

Discussion on: Image Compression with Node.js

Collapse
 
solodovnykov profile image
Anton Solodovnykov

I have some problem, pls help to resolve this error
Image description

Collapse
 
kcouliba profile image
Coulibaly Daba Kevin

This is caused by the ":" character on windows OS.
Eventually you should replace
const timestamp = new Date().toISOString();
with
const timestamp = Date.now();