Ctfrancia
Ctfrancia

Reputation: 1588

nodejs remove a file: TypeError: promises_1.rm is not a function

The docs for removing a file say that it should be imported the same as readfile as far as I understand it.

am I missing something?

in my code I have:

import { readFile, rm } from 'fs/promises'

export async function foo () {
  try {
    const res = await readFile('./file.txt') // works
    await rm('./file.txt') // TypeError: promises_1.rm is not a function
  } catch(e) {
    console.log('er', e)
  }
}

Upvotes: 8

Views: 8927

Answers (1)

Ctfrancia
Ctfrancia

Reputation: 1588

as @jonrsharpe said in the comment the issue is the node version. Since rm was added with version 14.14.0 and I am on 14.13.0

Upvotes: 8

Related Questions