Skip to main content

Posts

Showing posts from April, 2021

Tools that can make your development life easier

In this post, we will look into some lesser-known tools/websites that can help you to easily and quickly do your web development activities. Mongo Playground Mongo Playground  is a simple yet powerful sandbox to test and share MongoDB queries. Sometimes we quickly want to check few queries with sample collections. For example, you want to test that can you perform a n  upsert operation on an array of objects in a MongoDB collection. Instead of creating collections and then trying to do queries, you can use mongo playground to quickly create a sandbox and try your queries and also share them with your team members. There are few limitations though currently in the mongo playground, such as a database can’t contain more than 10 collections a collection can’t contain more than 100 documents The query capability is also limited. Currently  find() ,  aggregate()  and  update()  queries are supported. Hope this project will grow and provide much more features in the future. If you want to c