How do I create a Blob in Node.js?
Asked Answered
S

1

10

I have tried to create a Blob in Node.js. First just this:

var b = new Blob(['hi', 'constructing', 'a', 'blob']);

This fails with ReferenceError: Blob is not defined

Then I tried with the blob module (the two lines of code is from the example for this module, see https://www.npmjs.com/package/blob):

var Blob = require('blob');
var b = new Blob(['hi', 'constructing', 'a', 'blob']);

This fails with TypeError: Blob is not a constructor

How can I do it?

Saxena answered 5/12, 2018 at 17:23 Comment(18)
What version of Blob do you have installed?Kramatorsk
The package you refer to is for browsers, not Node.js From the description: "A cross-browser Blob that falls back to BlobBuilder when appropriate. If neither is available, it exports undefined." (my emphasis)Maidenhood
What do you want to do with the blob? Node.js uses Buffer or typed arrays, not Blobs.Maidenhood
If your using node.js, you might want to use Buffer instead.Portaltoportal
@Kramatorsk The latest.Saxena
@T.J.Crowder Are you sure? There is no "require" in the browser JavaScript.Saxena
@T.J.Crowder I catching the output from a system call and wants to upload it to some cloud storage.Saxena
@Saxena - Yes, I'm sure. Somewhat confusingly, browser-targeted packages have been appearing (in droves) on npm the last few years. Modules using require have been a feature of bundlers like Webpack, Rollup, etc., for a while, and so people started using npm for common modules for browsers just like using it for common modules for Node.js. In fact, some modules are written to work in either environment. (But blob doesn't appear to be one of them.)Maidenhood
@Saxena - "I catching the output from a system call and wants to upload it to some cloud storage." I suggest deleting this question and instead posting a question asking how to do that. This is an example of the X/Y problem (which happens to us all sometimes!). You want to do X (upload to cloud storage), think you do that with Y (a blob), and so you've asked about Y. But Y isn't how you do that in Node.js. You want to ask about X. :-)Maidenhood
But first I'd do some thorough searching, it seems like there's a lot of information out there for uploading files with Node.js.Maidenhood
@T.J.Crowder Thanks, I think there has been some valuable comments here so I do not think I will delete this question. But I will read a bit more about the thing I want to do and see if I need further help.Saxena
Do you use the Express framework?Maidenhood
@T.J.Crowder No, I try to use more simple modules so I have a chance to know what is going on.Saxena
@T.J.Crowder I would gladly delete it if I could understand why. I had no idea that Blob was not supported in Node.js (and I still do not know why it is not supported). To me your comments have been very valuable. They are surely valuable to some other people too. Why delete this information?Saxena
@Saxena - Comments are emphemeral on SO. They can and do go away without notice. But if you think the above is valuable, I'll collect it into an answer instead. :-)Maidenhood
@T.J.Crowder I see. Please make your comments an answer then.Saxena
And you're quite right. "How do I use Blobs in Node.js?" is a perfectly reasonable question, to which the answer genuinely is "You don't, you use ___." Point well made. :-)Maidenhood
Does this answer your question? Node.js can´t create Blobs?Transonic
M
13

Node.js has Blob support now, experimental since v15.7.0 / v14.18 and stable since v18.0.0, v16.17.0. This is part of the ongoing effort to bring web APIs to Node.js so code can be reused across the web and Node.js platforms.

The rest of this answer still applies re the blob package and the purpose you were going to use it for, though:


Node.js doesn't didn't used to have Blob, it uses Buffer (not to be confused with ArrayBuffer) and typed arrays.

The blob npm module you tried to use isn't for use in Node.js, it's for use in a browser, to smooth over historical differences in how you create Blobs in different browsers. From its description:

A cross-browser Blob that falls back to BlobBuilder when appropriate. If neither is available, it exports undefined.

(my emphasis)

Somewhat confusingly, browser-targeted packages have been appearing (in droves) on npm the last few years. Modules using require have been a feature of bundlers like Webpack, Rollup, etc., for a while, and so people started using npm for common modules for browsers just like using it for common modules for Node.js. In fact, some modules are written to work in either environment. (But blob doesn't appear to be one of them.)

In comments, you've said you want to upload a file from your Node.js process. You don't need a Blob for that, the way you do this in Node.js is different from the way you do it in a browser. So you probably want to research how to upload files from Node.js, without worrying about Blobs. That would be a different question, though. (One which may be answered here or, if you're willing to use Express, here.)

Maidenhood answered 6/12, 2018 at 11:31 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.