Giter Club home page Giter Club logo

Comments (9)

kofrasa avatar kofrasa commented on July 18, 2024

Hello,

Am glad you found this project useful. Mingo runs in NodeJS and the Browser. I am unfamiliar with the Jurassic C# library and have not tested it within that context.

While I look that up, to help me get a better sense of the error, could you provide an example of the query you were trying to run and the structure of the objects of your collection.

I would be happy to help.

from mingo.

wolfen351 avatar wolfen351 commented on July 18, 2024

Hi thanks a million for the response!

Ok, I didn't notice the node.js dependancy, please will you mention it on the front page?

At the moment I'm trying to do something simple:

// Insert all the init stuff here
var MyObject = { a: 1; b:2);
var result = Mingo.Test(MyObject, {a : { $gt : 0 }});
return result;

from mingo.

wolfen351 avatar wolfen351 commented on July 18, 2024

But I havent even gotten that far yet, right now I'm just trying to "include" your library, so I'm essentialy passing the whole file to Eval.

from mingo.

wolfen351 avatar wolfen351 commented on July 18, 2024

Ok I got a little further now.

It seems to want a reference to _ which it thinks is an object.

I inserted the below code into the startup sequence right in the beginning of the function:

var module = {};
var require = function () { return {};  };
var exports = {};

This seems to have made it happier.. now I need to figure out what this _ (underscore) thing is..

from mingo.

kofrasa avatar kofrasa commented on July 18, 2024

The documentation is quite clear on the context.
I think you may be using the api a bit incorrectly. You need to create a query object as in the example below.

var query = new Mingo.Query({a : { $gt : 0 }});
var result = query.test(obj); // return true or false

from mingo.

kofrasa avatar kofrasa commented on July 18, 2024

Great work!

Underscore is awesome and it is what powers mingo under the hood.
See here. underscore

from mingo.

wolfen351 avatar wolfen351 commented on July 18, 2024

awesome thanks for the link, let me include it and see what happens :)

from mingo.

wolfen351 avatar wolfen351 commented on July 18, 2024

ok including underscore.js was the magic that made this work. I removed my workaround from above and it still compiles happily.

Thank you again for the time and pain that went into making this.

from mingo.

kofrasa avatar kofrasa commented on July 18, 2024

was fun to make and thank you for finding it useful.

Happy Coding!

from mingo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.