moleculer-db-adapter-mongo
TypeScript icon, indicating that this package has built-in type declarations

0.4.19 • Public • Published

Moleculer logo

moleculer-db-adapter-mongo NPM version

MongoDB native adapter for Moleculer DB service.

Features

  • schemaless adapter
  • MongoDB driver v3.0

Install

$ npm install moleculer-db moleculer-db-adapter-mongo --save

Usage

"use strict";

const { ServiceBroker } = require("moleculer");
const DbService = require("moleculer-db");
const MongoDBAdapter = require("moleculer-db-adapter-mongo");

const broker = new ServiceBroker();

// Create a Mongoose service for `post` entities
broker.createService({
    name: "posts",
    mixins: [DbService],
    adapter: new MongoDBAdapter("mongodb://127.0.0.1/moleculer-demo"),
    collection: "posts"
});


broker.start()
// Create a new post
.then(() => broker.call("posts.create", {
    title: "My first post",
    content: "Lorem ipsum...",
    votes: 0
}))

// Get all posts
.then(() => broker.call("posts.find").then(console.log));

Options

Example with connection URI

new MongoDBAdapter("mongodb://127.0.0.1/moleculer-db")

Example with connection URI & options

new MongoDBAdapter("mongodb://db-server-hostname/my-db", {
    keepAlive: 1
})

Test

$ npm test

In development with watching

$ npm run ci

License

The project is available under the MIT license.

Contact

Copyright (c) 2016-2022 MoleculerJS

@moleculerjs @MoleculerJS

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.4.19
    1,348
    • latest

Version History

Package Sidebar

Install

npm i moleculer-db-adapter-mongo

Weekly Downloads

2,910

Version

0.4.19

License

MIT

Unpacked Size

46 kB

Total Files

12

Last publish

Collaborators

  • icebob