Objective This tutorial guide you to create a simple python flask rest api. In this article we are going to interact with MySQL database and will create an API for book schema and 5 endpoints for book API. We’ll create below endpoints. POST: /create GET: /all PUT: /update GET: /:id DELETE: /:id Introduction I am…

Code highlighting using ngx-quill with easy example in angular 9
Introduction I am assuming you have followed Quill Editor For Angular. In my previous post I did not explain about code highlighting using ngx-quill. So in this post I am going to explain about code highlighting using ngx-quill. Code highlighting using ngx-quill We have implemented basic editor in Quill Editor For Angular. Now we need to…

Ngx-quill image resize with easy example using angular 9
Introduction I am assuming you have followed Quill Editor For Angular. In my previous post I did not explain about ngx-quill image resize. So in this post I am going to explain about image resizing in quill js using angular. Technology Required Ngx-quill image resize Implementation We have implemented basic editor in Quill Editor For…

Free WYSIWYG Editor For Angular 9+ (quill js / ngx-quill)
Introduction Ngx-quill package is use to implement WYSIWYG HTML Text Editor. WYSIWYG HTML Text Editors are widely used to create blogs, email templates, online ticket design etc. WYSIWYG HTML Text Editor is also known as rich text editor. It provides a full featured textarea where users can do text formatting, inserting images, emoji, multimedia contents…

Fix 404 page not found error in Angular/React/Vue for production
Introduction The aim of this post is to fix 404 page not found error in angular, react js and vue js application after deployment of production build using node js server. I am assuming you have basic knowledge on how to create angular or react js or vue js application.