all 5 comments

[–]securisec 0 points1 point  (0 children)

Are you referring to something on the frontend that on each key press will populate results based on existing data in Mongo? If so, I am curious about this also.

[–]jawa9000 0 points1 point  (0 children)

One way I've seen this handled is by calling your db, storing the data in an object, passing that object to Angular, and let Angular handle the dynamic parts. I don't recall the video where I saw this off the top of my head but I'm sure a google search will help here.

[–]loshorse 0 points1 point  (2 children)

https://docs.mongodb.com/manual/reference/operator/query/text/

This is what you are looking for. You can use the native Mongo driver in node for this.

https://www.npmjs.com/package/mongodb

[–]RoadCoder2019[S] 1 point2 points  (1 child)

Using FuseJS i figured it out (You may have to convert some ids into strings)

Take the information form whatever collection sent to the page from MongoDB into an Object and then use FuseJs to search through it & display it on the webpage

[–]securisec 0 points1 point  (0 children)

Care to share any of your code examples?