React allows us to send information to a Component using something named props. Props are basically a kind of global variable or object. In this post, we will read about this in more detail. When React sees an element representing…
Expand +Category: Web Development
What is JSX in React?
JSX is a funny tag syntax. It is neither a string nor HTML. In this article, i am starting from the very basics and walk through everything you need to know about JSX. If you’ve ever wanted to learn React…
Expand +How to connect a MySQL database with Node.js
MySQL is one of the most common open source databases in the world, and is also effective. Approximately every popular application language, like Java or PHP, provides a driver to access and run operation with MySQL. Node.js and MySQL are…
Expand +How to Send Emails With Node.js
Send Emails With Node.js. In this article, I will discuss sending e-mail with Node.js. I’ve covered Express.js tutorials and I will also use NodeMailer in this article. For the verification, password recovery and promotion of account, many forums and blogs asked…
Expand +How to Combine Multiple Images or PDF Files into a Single PDF File Using ImageMagick
In this article, You will learn about how to create a single pdf file in Codeigniter from a separate set of images or pdf files using ImageMagick . PDF is the most used format to combine multiple images document or…
Expand +How to Create Pagination with Node.js, MongoDB, Express and EJS Step by Step
In this article, I’ll show you how to create pagination with node js , MongoDB, Express.js, EJS, and Bootstrap. We will generate a new database, define data collection, fill this collection with information and display contents to the page using…
Expand +How to Convert an Image to PDF in CodeIgniter using FPDF Library
In this article, You will learn about how to create pdf file in Codeigniter from image using fpdf library . PDF is the most used format to generate PDF for image document in the web application. PDF file provides a…
Expand +Express and Node JS Interview Questions & Answers
1. What is node.js? Node.js is an open-source, cross-platform JavaScript runtime environment built on Chrome’s V8 JavaScript engine. It allows developers to execute JavaScript code outside of a web browser, making it possible to run server-side applications using JavaScript. Node.js…
Expand +What is Callback Hell?
JavaScript programmers are talking a lot about callback hell. Callback hell is a concept that affects a JavaScript developer when he tries to perform various callbacks function one after the other. Some persons call it the pyramid of doom. Using…
Expand +Basic Difference Between Callback and Promise
If you are working as Node js Developer or want to start a career as Node js Developer then you should know the difference between callback and promise. In this article, I will explain to you the basic difference between…
Expand +