HomeArchive by Category "Back-End & Database"
Posted in Back-End & Database, NodeJS

Receive Mail From Email Server Using Node Js

Introduction: This topic is related to how we can fetch/send emails from an email server (gmail, yahoo, outlook, etc) with NodeJs. IMAP (Internet message access protocol): Introduction: IMAP (Internet Message Access Protocol) is a standard email protocol that stores email messages on a mail server, but allows the end user to view and manipulate the messages as […]

Posted in Back-End & Database, Uncategorized

Nodejs Headless CMS: Strapi.io KeystoneJs

Node.Js It is an open-source server environment that is free of cost for all developers around the world. Node.js runs on various platforms (Linux, Windows, Unix, Mac OS). The Node.js uses synchronous programming and JavaScript on the server. Send Task to the computer file system The file system opens and reads the file. The server returns […]

Posted in Back-End & Database

Headless Commerce: Saleor v/s Vue Storefront

Headless Commerce is that separation which makes back end and front end two different identities in an e-commerce application. It presents various product catalogues without any traditional constraints of the eCommerce platform. In addition, you have full control over the presentation and aesthetics of the products. Developers decouple the “head” or front-end template from the […]

Posted in Back-End & Database, Uncategorized

Introduction to Web Scraping

What is Web Scraping? Web Scraping is the process of data extraction from various websites. DIFFERENT LIBRARY/FRAMEWORK FOR SCRAPING: Scrapy:– If you are dealing with complex Scraping operation that requires enormous speed and low power consumption, then Scrapy would be a great choice.  Beautiful Soup:- If you’re new to programming and want to work with web scraping […]

Posted in Back-End & Database, Python

Scrapy-settings, Items, pipeline

Scrapy Settings: If you’re looking to uniquely customize your scraper, then you’ll want to learn the tips and tricks of how to do this without a hassle. Using Scrapy settings, you can conveniently customize the crawling settings of your crawler. That’s not all, scrapy also allow you to customize other items like core mechanism, pipelines, […]