API Development Using NodeJS, ExpressJS and MySQL

In this tutorial guide, we will build a simple NodeJS API using ExpressJS and MySQL with basic CRUD (create, read, update, delete) operations. NodeJS is a JavaScript run-time environment used to execute JavaScript code outside browsers i.e on the servers. Visit our other blog post, to learn more about what is NodeJS? NodeJS along with ExpressJS (web framework for NodeJS) is a widely used combination to build RESTful API’s with a database query language like MySQL or MongoDB.

forward

What is NodeJS

This short guide describes briefly what is NodeJS. Following are some of the references to the definition and explanation of the question What is NodeJS. Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. https://nodejs.org/en/ Node.js is an open-source, cross-platform, JavaScript runtime environment that executes JavaScript code outside of a browser. https://en.wikipedia.org/wiki/Node.js Node.js is an open source server environment which runs on various platforms (Windows, Linux, Unix, Mac OS X, etc.) https://www.w3schools.com/nodejs/nodejs_intro.asp NodeJS is not programming language or frameworkNodeJS is a run-time environment to execute JavaScript codeNodeJS is asynchronous which means that it can handle multiple requests at the...
forward

10 Recommended Wordfence Settings to Secure WordPress Website

Wordfence is very powerful and popular WordPress plugin used for the security of the WordPress websites. The plugin consists of large number of settings which maybe confusing for beginner level users. This guide helps the beginner level users to implement the 10 important recommended Wordfence settings to secure WordPress website.

forward

Detailed Guide – Recommended Wordfence Settings for WordPress Website

Wordfence is very powerful and popular WordPress plugin used for the security of WordPress websites. The plugin consists of large number of settings which maybe confusing for beginner level users. This guide helps the beginner level users understand and implement the recommended Wordfence settings for WordPress websites.

forward

Host Angular App and NodeJS App on Same Domain

In this tutorial, we will discuss the steps to host angular app (front-end) and NodeJS App (back-end API) on same domain. The idea is that we will have a folder named as ‘public’ in the root folder of the app which will have all files associated to the angular app.

forward

7 Steps to Get Started with GitLab

This tutorial describes the 7 basic steps to clone a GitLab repository on local machine and then the commands to push the changes back to the GitLab environment.

forward

Search Engine Optimization Guide for WordPress Website

Search engine optimization (SEO) is a combination of certain techniques and procedures for increasing the visibility of the website in search engines by optimizing the content of the website.

forward

Get Started with Angular 8

Learn one way to build applications with Angular and reuse your code and abilities to build apps for any deployment target. For web, mobile web, native mobile, and native desktop. https://angular.io/ Important Commands: npm install -g @angular/cling new hello-worldng build --prod (for generating production ready files)ng serve and the app is available at http://localhost:4200To create a component use the command ng g c courseTo create services use the command; ng g s service-nameng add @angular/material OR npm install --save @angular/material @angular/cdknpm install --save @angular/animationsnpm install --save hammerjsng add angular-bootstrap-md Core Angular Concepts: InterpolationProperty interpolationClass bindingStyle bindingEvent bindingTemplate reference variablesTwo way bindingStructural...
forward