javascript - Create a file object or Blob -
how can create file object or blob object in node js? object required should same while uploading file form in html.
you can't directly create objects file api, because that's api designed client side , implemented browsers.
if wanted to, implement same objects (the api documented, of course), make more sense use nodejs's file system api instead.
Comments
Post a Comment