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

mongo-query-engine

v1.0.13

Published

Restful, filter based, queryable middleware for express

Downloads

6

Readme

MongoQueryEngine

Restful, free text and filter based, API and backend using MongoDB

The MongoQueryEngine (MQE) is library you can use to add middleware to your express application. The MQE provides a query layer for items stored in MongoDB. The Rest interface provides both filter based expressions as well as free text search. The interface also provides pagination. Finally there is a small helper jQuery library that can be loaded to use with your fontend. The library helps with query creation and parsing as well as app routing. Finally, the MQE adds SEO support.

Starting MQE Application

To add the MQE middleware to your app simply add app the following to your express app.

var express = require('express');
var app = express();
var http = require('http');
var mqeLib = require('MongoQueryEngine');

mqeLib.init({
    config: require('/path/to/config.js'), // see below
    app: app,
    express: express,
  }, function(){
  /**
   * Setup contains express, app, database, collection and mqe
   */
    var setup = mqeLib.getSetup();

    var server = http.createServer(app);
    var server.listen(3000);
  }
);

config

The MQE uses an config.js file to specify various options for the MQE application. Theres parameters include, database configuration and express configuration.

Here is on overview:

{
	db : { // config for MongoDB
	  // connection string for the database
	  url             : "mongodb://localhost:27017/wcga",

	  // collection where the queryable items are stored
	  mainCollection  : "myDataCollection",

	  // primary filters.  these filters will have indexes created for theme as well as have remaining
	  // counts show in queries.   These attributes are probably your 'suggestions' for further filtering.
	  indexedFilters  : ['keywords','organization','anotherAttribute'],  

	  // currently MQE only allows one sort option, place the attribute you wish to sort on here
	  sortBy : 'title',

	  // attributes that will be used in the text search.  Mongo only allows for one text index.  This list of
	  // attributes will be combined into that index and ensured on start.
	  textIndexes       : ['title','description','organization','anotherAttribute'],

	  // attributes that should not be returned in the response objects
	  blacklist : ['_id', 'md5','secret'],

	  // mark this flag if you mainCollection is the result of a MapReduce opperation.  MQE will handle the marshalling
	  // of the 'value' namespace.
	  isMapReduce     : true
	},
	server : {
	  // server host url
	  host : "localhost",

	  // port outside world goes to.  most likely 80
	  remoteport : 80,

	  // local port on machine
	  localport : 3003
	},
  logging = {
  	dir : "/var/log/myapp",

  	// max log size
  	maxsize : 10485760
  }
}

Post Process Responses

You post process the 'get' and 'query' responses by adding additional config to mqeLib.init(). Example:

mqeLib.init({
    config: config,
    app: app,
    express: express,
    process : {
      get : function(params, item, callback) {
        // do stuff here
        callback(item);
      },
      query : function(params, items, callback) {
        // do stuff here
        callback(items);
      }
    }
});

As you see in the example above, each process function will be handed the query parameters from the request, the item or items in the response and a callback for when you are finished.