VisualSearch.js: Is there an alternative to Visual Studio for JavaScript using the vanilla tree (grant search)?

I have a requirement in my project where I need something exactly similar to DocumentCloud VisualSearch.js: https://documentcloud.imtqy.com/visualsearch/

This solution is heavily dependent on Backbone.js and Underscore.js (dependent on APIs like _.any)

But my project is built in Angular 2 and lodash (the latest version of lodash does not support _.any).

So, I can not integrate VisualSearch.js in my application.

Please advise if there are any alternatives or any way to use VisualSearch.js with my configuration.

That would be a big help!

Thanks in advance.

+4
source share
1 answer

I could not find a suitable replacement for VisualSearch, so I wrote my own. I call it fancySearch. No jQuery, BackBone, Underscore or any other library was harmed during creation fancySearch. Use it or improve, do as you want. I posted it in a public domain

Github: https://github.com/punkish/fancysearch
Demo and documentation: https://punkish.org/fancysearch/

+2
source

Source: https://habr.com/ru/post/1673125/


All Articles