我正在尝试使用 nanoid ( https://www.npmjs.com/package/nanoid/v/2.1.2 )
exports = async function(){
const nanoid = require("nanoid");
const uid = nanoid(10);
}
从 MongoDB 领域运行时,但它抛出:
uncaught promise rejection: failed to eval source for module 'nanoid': node_modules/nanoid/index.cjs: Line 9:7 Unexpected identifier (and 16 more errors)
这就是我可以从 Realm Dashboard 中看到的所有错误。
可能缺少什么?