我在我的nodejs应用程序中使用google-cloud / datastore有一个奇怪的错误
const googleDatastoreFactory = () => {
console.log('inside the factory');
const Datastore = require('@google-cloud/datastore');
console.log('imported datastore stuff');
return new Datastore();
};
export default googleDatastoreFactory;
上述工厂方法在此行挂起
const Datastore = require('@google-cloud/datastore');
它实际上只是坐在那里(我知道这是因为我的自定义日志记录; console.log)。 Google-cloud / datastore没有记录或错误消息。