The front end Browser and node environment, all kinds of documents in the form of binary conversion blob/base64 / file/Buffer/biteArray December 10, 2023 by Steven Tate No Comments Buffer to Blob Buffer is the file format returned by fs.readFile reading binary files const buffer = fs.readFileSync("path/to/foo.jpg") const blob = new Blob([buffer]); Copy the code