I followed the instructions from the readme to import the Jotform class using esm imports
node version 18.19.0
import Jotform from 'jotform'
const client = new Jotform('mytoken')
TypeError: Jotform is not a constructor
Changing to
import JotformPackage from 'jotform'
const Jotform = JotformPackage.default
const client = new Jotform('mytoken')
solves the problem