Skip to content
Advertisement

Tag: pouchdb

What is the NodeJS ES6 equivalent of let PouchDB = require(‘pouchdb’)?

I am trying to follow the tutorial at https://medium.com/beginners-guide-to-mobile-web-development/getting-started-with-pouchdb-f0f3d7baebab to use PouchDB inside of a server-side NodeJS script. and I’m getting stuck in Step 1: const PouchDB = require(‘pouchdb’); this results in: ReferenceError: require is not defined in ES module scope, you can use import instead When I google the error, I am told to change “type”:”module” to “type”:”commonjs”. Unfortunately,

Advertisement