Display Message in Console – Javascript, Figlet

In this article, we are going to show you how you can display a beautiful message in a browser console using Javascript. You just need to download a library called Figlet. After download, you need to extract the zip file and copy the file lib/figlet.js in your project. You also need to copy the fonts …

Email marketing tool in Laravel and Vue JS

An email marketing tool is created in Laravel and Vue JS. It is a single-page application. It allows you to send bulk emails to a large group of people. The database used for this project is MySQL. Demo: https://emailmarketingtool.adnan-tech.com How to use: 1. Add your SMTP account The first step is to add an SMTP …

Password protect ZIP file in Mac OS X

In this article, we will show you how you can password protect your zip file in Mac OS X. To create a ZIP file and set the password to it using Mac, you simply need to follow the following steps: Open Terminal Open folder where target file is located by running the command: cd “path …

How to Create a ZIP file in Node JS

In this article, we are going to teach you how you can create a ZIP file of any file or folder with all its sub-folders in Node JS. Video tutorial: First, you need to install a module named “zip-local” in your project. So run the following command in your command prompt or terminal: Then you …

Create a Picture Competition Website in Express JS, MEVN

MEVN stands for Mongo DB, Express JS, Vue JS, and Node JS. In this tutorial, we will teach you how you can create a picture competition web app using Node JS as a back-end server, Mongo DB as a database, and Vue JS as a front-end. Demo: What we are going to do: Download Assets …

Laravel debugbar in production

In this article, we are going to show you how you can use a Laravel debugbar library in your production website. Debug Bar is used mainly for debugging environments but there can be situations where you might face an error in production. But debug bar displays all the queries and models of your Laravel application. …

Change title text – PHP, MySQL, Node JS

In this article, we are going to show you, how you can change title text of an HTML page using simple Javascript. We will show a real-time notification to your users in their title bar using PHP, MySQL, and Node JS. You can show a notification in a title bar with just PHP and MySQL. …