node.bcrypt.js
node.bcrypt.js copied to clipboard
please support usage with import, not just require
README mentions usage only with require
As some projects are moving to using import instead, would you please support usage with import as well, for node 16.x?
Should the import does not work with the CommonJS interop already?
Could you please add to README how to use import?
Works fine for me with import:
import bcrypt from "bcrypt";
// later
await bcrypt.compare(password, hash);