by Yogesh | Oct 12, 2018 | mongoDB tutorial
mongoDB basic queries Go to bin folder of mongo To Start Mongo server : click on mongod To Start Console for working ; click on mongo Start Writing queries Note : Mongo queries are case sensitive To Show All databases: show dbs To use database: use [databasename] To...
by Yogesh | Oct 2, 2018 | Node JS Tutorial
server html static files into node application Index Us Home About Us About Us Contact Us Contact Us h1 { color: red; } var http = require('http'); var fs = require('fs'); http.createServer(function(req,res){ var content = ''; var type = ''; if(req.url === "/") {...
by Yogesh | Oct 2, 2018 | Node JS Tutorial
Define and using Modules: node module export or import The module in the node is a simple JavaScript library where we write some variable and functions. in this tutorial, I am going to discuss that how we can define the module and import the module in another module....
by Yogesh | Sep 24, 2018 | Angular 4 Tutorial
Creating web component in angular 6: Angular element An angular element is a new feature of angular 6 framework angular elements translate your angular components into web component means using Angular 6 elements feature you can use your component as a Dom element....
by Yogesh | Sep 3, 2018 | Angular 4 Tutorial
how to use carousel in angular 5 | 6 In this video tutorial, I implemented a bootstrap 4 carousel in angular 6 project. first I told you that how we can upgrade angular 5 to angular 6 packages, how we can install NG Bootstrap repository in our current angular...