Read the Query String Node.Js

2019-05-01T11:11:15+00:00

The function passed into the http.createServer() has a req argument that represents the request from the client, as an object (http.IncomingMessage object). This object has a property called "url" which holds the part of the url that comes after the domain name: var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.write(req.url); res.end(); }).listen(8080); Save the code

Read the Query String Node.Js2019-05-01T11:11:15+00:00

Using An Exit Intent Listener To Manage Popups On A Page

2019-04-24T12:39:38+00:00

Not too long ago I wrote a tutorial titled, Create an Email Subscription Popup with jQuery, that demonstrated how to create popup modals within your web application. In this example the modals were presented on a timer. If you hadn’t noticed, and I think most people did, The Polyglot Developer was using those modals for newsletter

Using An Exit Intent Listener To Manage Popups On A Page2019-04-24T12:39:38+00:00

Node.js Modules

2019-04-22T16:03:39+00:00

What is a Module in Node.js? Consider modules to be the same as JavaScript libraries. A set of functions you want to include in your application. Built-in Modules Node.js has a set of built-in modules which you can use without any further installation. Look at our Built-in Modules Reference for a complete list of modules. Include Modules

Node.js Modules2019-04-22T16:03:39+00:00

How Node.Js Work in AWS

2019-04-17T12:13:28+00:00

I am starting learning how node js work I made a first video how this will work in aws or amazon server. Once I am done and configure it correctly I will start my own chat API using node js.  Learning is fun when you have the passion to do it :). Here is the

How Node.Js Work in AWS2019-04-17T12:13:28+00:00

Convert a putty .ppk key to an Amazon .pem file on OSX

2019-04-10T09:03:14+00:00

This article will show you how to generate a .pem file from an existing .ppk key. 1. Install putty on your mac Done easily with homebrew. $ brew install putty 2. Generate the keyWe will use puttygen to generate the key. $ puttygen key.ppk -O private-openssh -o key.pem key.ppk: the original file name/path. -O private-openssh: the output type. private-openssh is used to save an

Convert a putty .ppk key to an Amazon .pem file on OSX2019-04-10T09:03:14+00:00

How to Create a WordPress Plugin

2019-04-01T14:38:54+00:00

I made a video with regards creating your own plugin you can visit it here Creating My Own Wordpress Plugin Playlist. I already published 1 plugin in the wordpress.org this one Amelia Shortcode Extended. Wordpress Plugin Creating a wordpress plugin is easy I made a video and you can follow that steps for you to understand

How to Create a WordPress Plugin2019-04-01T14:38:54+00:00