Skip to main content

Posts

Showing posts from March, 2017

Handle MongoDB with WebStorm in Windows

Normally MongoDB is handle by using Windows command line interface. But it is little bit difficult to deal with. Therefore instead of Windows CMD,   we can use WebStorm Terminal to handle the MongoDB commands and all the stuff. First of all there should be two requirements to begin with this process. MongoDB should be properly install to the computer and MongoDB bin folder path should be set as environment variable. WebStorm should be completely install to your machine.(download link:- https://www.jetbrains.com/webstorm/download/#section=windows) There are simple three steps to do . install Mongo Explorer plugin to the Webstorme IDE                  + Open the WebStorm IDE and create an empty project                  + Go to Files >Settings>Browse repositories.                  + Search for 'Mongo' an...

JavaScript-application

JavaScript is a programming language that can be included on web pages to make them more interactive. It can be used to check or modify the contents  the contents of forms, change images, open new windows and write dynamic page content. We can use JavaScript with CSS (Cascade Styling Sheets) and DHTML (Dynamic Hypertext Markup Language). These allows you to make your web application attractive. JavaScript is a client side, interpreted, object oriented, non-blocking io, asynchronous, dynamically typed, event driven, high level scripting language and java is a client side, compiled, object oriented high level language. Now let’s see what these means: ·           Client Side:   Programs are passed to the computer that the browser is on, and that    computer runs them. The alternative is server side, where the program is run on the server and only the results are passed to the computer that the browser is on. For Examples...