Socket
Book a DemoInstallSign in
Socket

@trigo/atrix-mongoose

Package Overview
Dependencies
Maintainers
3
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@trigo/atrix-mongoose

mongoosse plugin as atrix data source

latest
npmnpm
Version
1.0.1
Version published
Weekly downloads
15
1400%
Maintainers
3
Weekly downloads
 
Created
Source

Greenkeeper badge NSP Status

atrix-mongoose

mongoose plugin for atrix microservice framework

atrix manoggose plugin automaticaly sets up the connection to you mongo db using monggose models

Compatibility

atrix-mongoose < 1.0.0 works with atrix < 6.0.0 atrix-mongoose >= 1.0.0 works with atrix >= 6.0.0

Features

  • configuration driven
  • multi connection/database mgmt
  • GridFs (gridfs-stream) intigration

Installation

# install atrix framework
npm install -S @trigo/atrix

# install atrix-mongoose plugin
npm install -S @trigo/atrix-mongoose

# No need to install mongoose itself!

Usage & Configuration

models/TestModel.js


'use strict';

// ATTENTION: Do not require mongoose here!

module.exports = (mongoose) => {
	return new mongoose.Schema({
		name: {
			type: 'string'
		}
	});
}

models/factory.js


'use strict';

// ATTENTION: Do not require mongoose here!

module.exports = (mongoose, connection) => {
	return {
		TestModel: connection.model('TestModel', require('./TestModel')(mongoose)),
	};
}

handlers/GET.js

module.exports = (req, reply, service) => {
	// access model class for connection "m1"
	const TestModel_C1 = service.dataConnections.m1.schema.TestModel;
	
	// access GridFs (gridfs-stream) for connection "m1"
	const GridFs_C1 = service.dataConnections.m1.gridfs;
	
	// access the mongoose connection object for connection "m1"
	const Connection_C1 = service.dataConnections.m1.connection;
	
	// access the mongoose object (shared between all connections)
	const mongoose = service.dataConnections.m1.mongoose;
	
	// get model class for connection "m2" 
	const TestModel_C2 = service.dataConnections.m2.schema.TestModel;
	...
}

index.js

'use strict';

const atrix = require('@trigo/atrix');
const path = require('path');

const svc = atrix.addService({
	name: 'mongoose', 
	endpoints: {
		http: {
			// declare port to bind
      port: 3007,

      // the directory containing the handler files
      handlerDir: `${__dirname}/handlers`,
   	},
  },
	// declare a dataSource config section
	dataSource: {
		// name of the data source
		m1: {
			// type of data connection
			type: 'mongoose',
			// connection configuration
			config: {
				// path to the model factory module to be required by the plugin
				modelFactory: path.join(__dirname, './models/factory'),
				
				// database connection string
				connectionString: 'localhost:27017/test-atrix-mongoose-m1',
			},
		},
		m2: {
			type: 'mongoose',
			config: {
				modelFactory: path.join(__dirname, './models/factory'),
				connectionString: 'localhost:27017/test-atrix-mongoose-m2',
			},
		},
	},
});

// start service. 
// This will wait for the mongo connection to be available before starting up. 
// When conection(s) is lost after initial startup the plugin automatically tries to reconnect  
svc.start();

Run service with node index.js

Common issues

If you installed mongoose itself and your code requires it somewhere before the plugin is loaded, you have a good chance to break connection & model setup. Do not install mongoose itself!. If unsure simply run npm remove -S mongoose in your application root folder.

Contributing

If you update a package (especially mongoose) or the node version than you should run specs/failed-connection.specs.sh to ensure that the return codes on failed MongoDb connections are still correct.

FAQs

Package last updated on 10 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts