Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TypeError: fs.createWriteStream is not a function in Node

I couldn't find any resources online explaining why I'm running into this issue, even the official Node JS docs / API reference say that createWriteStream is a method in fs:

fs.createWriteStream(path[, options])[src]#

All other stack overflow questions I found were people who were accidentally trying to access fs from the browser. So just to clarify, I am using Node!!

Example Code:

import fs from 'fs/promises'

let ws = fs.createWriteStream("example.png")

Example code output:

file:///workspace/buz/src/error.js:3
let ws = fs.createWriteStream("example.png")
            ^

TypeError: fs.createWriteStream is not a function
    at file:///workspace/buz/src/error.js:3:13
    at ModuleJob.run (node:internal/modules/esm/module_job:198:25)
    at async Promise.all (index 0)
    at async ESMLoader.import (node:internal/modules/esm/loader:385:24)
    at async loadESM (node:internal/process/esm_loader:88:5)
    at async handleMainPromise (node:internal/modules/run_main:61:12)

Misc:

Node version: v16.15.1
OS: Mac OS

like image 698
dj nag Avatar asked Oct 25 '25 19:10

dj nag


2 Answers

I figured it out:

createWriteStream() is a function of fs, but not of fs/promises!!

I couldn't find ANY documentation online for how to use createWriteStream() with fs promises, so the easiest option is just to import it from the normal callback based fs:

import fs from 'fs/promises'
import {createWriteStream} from 'fs'

let ws = fs.createWriteStream("example.png")

I read through the Node documentation on fs and went through all the methods in the the fs/promises API and none of them return a <WriteStream>. So as of today, it seems like there's no way to get around this issue without importing stuff from the normal fs API.

Update: Changed wording to not use the word synchronous when describing the callback based fs API

like image 51
dj nag Avatar answered Oct 27 '25 08:10

dj nag


if you want use fs/promise. First, you should open file to get a FileHandle. then you can use fileHanlde.createWriteStream().

import fs from 'fs/promises'

let file;
try{
   file = await fs.open("example.png");
   let ws = file.createWriteStream();
} finally(){
   await file?.close();
}

like image 39
stone_jin Avatar answered Oct 27 '25 08:10

stone_jin



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!