Good resources for learning Javascript

JavaScript is a widely used, amazing and misunderstood language by many developers. Its different concepts make it difficult for programmers coming from other languages. Here I am not going to explain different concepts but telling different resources learn JS (JavaScript). Knowing basics of JS in browser (For Beginners): If you are just a starter, who … Read more

Configuring and using Laravel with MongoDB

This entry is part 1 of 1 in the series MongoDB

This entry is part 1 of 1 in the series MongoDBIn this article we will see how to use MongoDB with Laravel (PHP framework). So first we need to install MongoDB and Laravel. Laravel and MongoDB installation: We will install Laravel and MongoDB one by one and I assume that you have PHP already installed … Read more

Installing MongoDB driver for PHP on Ubuntu and other Linux distributions

Mongo is official MongoDB driver for PHP. Here is detail of this driver on php.net:  http://php.net/manual/en/mongo.manual.php . Mongo include MongoClient class which is required to connect MongoDB and required by several packages that bridge between MongoDB and PHP. MongoClient works on almost all of Operating Systems including Windows, Mac OS X, Unix, and Linux; little- and big-endian … Read more

Installing MongoDB driver for PHP on Windows

  MongoClient class is included in “Mongo” that is official MongoDB driver for PHP. MongoClient class is required to connect MongoDB and required by several packages that bridge between MongoDB and PHP. Here is detail of this driver on php.net:  http://php.net/manual/en/mongo.manual.php Mongo works on almost all of Operating Systems including Windows, Mac OS X, Unix, and Linux; … Read more

API Testing: Installing and Using Codeception

This entry is part 3 of 3 in the series API Testing

This entry is part 3 of 3 in the series API TestingIn this post, we will have a look on how we can use Codeception for API testing. First we need to install codeception. Installation: Here is Codeception’s quick start guide that show multiple ways to install codeception. Here we will be installing through Composer, … Read more