npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

modli-mongo

v1.0.2

Published

Modli adapter for Mongo

Downloads

11

Readme

wercker status Code Climate Test Coverage

Modli - Mongo Adapter

This module provides adapter for the Mongo datasource for integration with Modli.

Installation

npm install modli-mongo --save

Config and Usage

When defining a property which will utilize the adapter it is required that a collection be supplied:

import { model, adapter, Joi, use } from 'modli';
import mongo from 'modli-mongo';

model.add({
  name: 'foo',
  version: 1,
  collection: 'fooCollection'
  schema: {
    id: Joi.number().integer(),
    fname: Joi.string().min(3).max(30),
    lname: Joi.string().min(3).max(30),
    email: Joi.string().email().min(3).max(254).required()
  }
});

Then add the adapter as per usual with the following config object structure:

adapter.add({
  name: 'mongoFoo',
  source: mongo
  config: {
    host: {HOST_IP},
    port: {HOST_PORT},
    username: {USERNAME},
    password: {PASSWORD},
    database: {DATABASE}
  }
});

You can then use the adapter with a model via:

// Use(MODEL, ADAPTER)
const mongoTest = use('foo', 'mongoFoo');

Methods

The following methods exist natively on the Mongo adapter:

execute

Allows for executing methods directly on the collection:

mongoTest.execute('insert', { /*...record...*/ })
  .then(/*...*/)
  .catch(/*...*/);

checkConn

Ensures (or waits for) established connection:

mongoTest.checkConn()
  .then(/*...*/);

Note: the checkConn method is already utilized by all other methods and only needs to be added in a case where you're extending on or using a method of the db object directly.

createCollection

Creates the collection based on the model's collection name:

mongoTest.createCollection()
  .then(/*...*/)
  .catch(/*...*/);

create

Creates a new record based on object passed:

mongoTest.create({
    fname: 'John',
    lname: 'Smith',
    email: '[email protected]'
  })
  .then(/*...*/)
  .catch(/*...*/);

read

Returns records matching a query object (or all if no query specified):

mongoTest.read({ fname: 'John' })
  .then(/*...*/)
  .catch(/*...*/);

update

Updates record(s) based on query and body:

mongoTest.update({ fname: 'John' }, {
    fname: 'Bob',
    email: '[email protected]'
  })
  .then(/*...*/)
  .catch(/*...*/);

delete

Deletes record(s) based on query:

mongoTest.delete({ fname: 'John' })
  .then(/*...*/)
  .catch(/*...*/);

extend

Extends the adapter to allow for custom methods:

mongoTest.extend('myMethod', () => {
  /*...*/
});

Development

The Mongo adapter requires the following environment variables to be set for running the tests. These should be associated with the Mongo instance running locally.

MODLI_MONGO_HOST,
MODLI_MONGO_PORT,
MODLI_MONGO_USERNAME,
MODLI_MONGO_PASSWORD,
MODLI_MONGO_DATABASE

This repository includes a base container config for running locally which is located in the /docker directory.

Makefile and Scripts

A Makefile is included for managing build and install tasks. The commands are then referenced in the package.json scripts if that is the preferred task method:

  • all (default) will run all build tasks
  • start will run the main script
  • clean will remove the /node_modules directories
  • build will transpile ES2015 code in /src to /build
  • test will run all spec files in /test/src
  • test-cover will run code coverage on all tests
  • lint will lint all files in /src

Testing

Running make test will run the full test suite. Since adapters require a data source if one is not configured the tests will fail. To counter this tests are able to be broken up.

Test Inidividual File

An individual spec can be run by specifying the FILE. This is convenient when working on an individual adapter.

make test FILE=some.spec.js

The FILE is relative to the test/src/ directory.

Deploys

For deploying releases, the deploy TAG={VERSION} can be used where VERSION can be:

<newversion> | major | minor | patch | premajor

Both make {COMMAND} and npm run {COMMAND} work for any of the above commands.

License

Modli-Mongo is licensed under the MIT license. Please see LICENSE.txt for full details.

Credits

Modli-Mongo was designed and created at TechnologyAdvice.