Hi community,
I'm relatively new to meteor and see the potential of it. I have worked on some bigger Symfony projects with a few coworkers and there we often had problems with huge database queries which grow over time. More conditions came and were added to the repository but sometimes they were not required which often resulted into a mess of query functions. Sometimes we were just lazy and didn't consistently include all conditions and just fired a "by id" query on an edit formula which is a security problem.
Because creating packages is relatively easy with meteor i had the idea of creating a package to avoid that problem before running into it. The result is the
query-builder.
What do you guys think of it? I haven't fully tested it yet but I like my idea so I want to hear what others think. ;)