@koikorn/adapter-mongoose

8.1.3 • Public • Published

Mongoose database adapter

View changelog

Usage

const { MongooseAdapter } = require('@koikorn/adapter-mongoose');

const keystone = new Keystone({
  adapter: new MongooseAdapter({...}),
});

Config

mongoUri (required)

This is used as the uri parameter for mongoose.connect().

Default: Environment variable (see below) or 'mongodb://localhost/<DATABASE_NAME>'

If not specified, KeystoneJS will look for one of the following environment variables:

  • CONNECT_TO
  • DATABASE_URL
  • MONGO_URI
  • MONGODB_URI
  • MONGO_URL
  • MONGODB_URL
  • MONGOLAB_URI
  • MONGOLAB_URL

Mongoose options (optional)

Additional Mongoose config options are passed directly through to mongoose.connect().

Default:

{
  useNewUrlParser: true,
  useFindAndModify: false,
  useUnifiedTopology: true,
}

See the Mongoose docs for a detailed list of options.

Readme

Keywords

none

Package Sidebar

Install

npm i @koikorn/adapter-mongoose

Weekly Downloads

4

Version

8.1.3

License

MIT

Unpacked Size

62 kB

Total Files

5

Last publish

Collaborators

  • lorenhaim