What Javascript library can evaluate MongoDB-like query predicates against an object?

二次信任 提交于 2019-11-28 23:22:46

OK I found the answer: Sift.js

Now for the long answer: This has been asked and answered before. The salient points are:

  • Use Sift if you really want Mongo syntax
  • If you want to be more mainstream, use Underscore.js like everyone else. It has heaps of handy functions in addition to the fact that it basically does what sift does with a slightly different syntax.
  • You may not need any library at all - modern browsers support many useful functions directly on the Array prototype, like filter() for example.

As a final note, mongodb-riff appears to be trying to do something similar but currently the page states clearly that it doesn't work - perhaps it's abandoned. But his readme is at least of value :-), he mentions sift and Query Engine which looks more mature, though too complicated for me!

Personally I'm going to go with Underscore because now that I've looked into it for the first time, I realise that it has heaps of handy stuff I need, plus I really only wanted to do simple functions like what would be _.find() in Underscore. But I guess if you want to do more complicated mongo-like queries, you'll do it in less LOC with Sift.

Check out Mingo

I implemented it after finding no suitable alternative.

It is still actively being developed but is usable. Test coverage is not complete.

Usable from both browser and nodejs

[Edit]

This library is now the most complete implementation of MongoDB's query language for the frontend.

https://github.com/mirek/node-json-criteria library does exactly that - evaluates criteria queries on JSON objects using MongoDB query format.

lodash.js

You want to use lodash.js. Its a drop in replacement for underscore.js. The performance is twice as fast.

http://lodash.com/

The closest I could find was linq.js, which is LINQ for JavaScript. Hopefully this will be of some help to you.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!