Deploy a PHP Application on AWS Lambda Function Serverless

Deploy a PHP Application on AWS Lambda Function Serverless In this post, I will explain the steps to deploy a simple PHP email MX record validation application on AWS lambda function using Bref layers. AWS Lambda natively supports Java, Go, PowerShell, Node. js, C#, Python, and Ruby code, not PHP. You can deploy the lite weight PHP function to improve…

Continue Reading

Pocketbase Hosting on Apache or XAMPP

Pocketbase Hosting on Apache or XAMPP Pocketbase is an open-source application and alternative to Google Firebase. This is offering realtime database, authentication(including social), and file storage for your next web and mobile application. This article is about how to host the Pocketbase application server which usually runs at 8090 port with your existing application server. If you are using Linux…

Continue Reading

React Removing Unused CSS and Obfuscate JavaScript in Post Build Process

React Removing Unused CSS and Obfuscate JavaScript in Post Build Process This is continues of my previous post about how to remove unused CSS and convert unclear JavaScript to protect your source code in the post-build process. If you are using CSS libraries like Bootstrap, Tailwind CSS, etc.. and sometimes multiple frameworks. But your application components are not using all…

Continue Reading

Angular Removing Unused CSS and Obfuscate JavaScript

Angular Removing Unused CSS and Obfuscate JavaScript Nowadays most of the applications develop based on large CSS libraries like Bootstrap, Tailwind CSS etc.. and sometimes multiple frameworks. But your application components are not using all of the styles and it adds more weight on the application performance. This post will explain the Angular post-build process to remove unused CSS and…

Continue Reading

Host a Website on Your Home Raspberry Pi

Host a Website on Your Home Raspberry Pi The Raspberry Pi is a low cost device and it consumes low power. It can be used as a web server with your home internet and you will have complete freedom to implement ideas. Nowadays popular cloud services are costing high for the same specifications and recently banned some websites for showing…

Continue Reading

Cypress UI Automation End to End Testing

Cypress UI Automation End to End Testing UI automation is the most important part of the CI/CD(continuous integration and continuous delivery) process. Integration testing helps you to avoid manual regression testing and improve the application quality. In this post I will explain how to implement UI automation testing to existing Angular projects using the Cypress tool, this is a great…

Continue Reading

Event Emitters Component Interactions in Angular Ionic

Event Emitters Component Interactions in Angular Ionic This article is more about understanding the Event Emitters in Angular and Ionic. Data flow is the most important when you build an application to communicate with components. Event Emitters will help you to even bind using @Input @Output decorators. Here is a simple example to display and update the user profile using…

Continue Reading

Create a RESTful API using Node and Express with MySQL Database

Create a RESTful API using Node and Express with MySQL Database Node Express web framework is a best solution to create RESTful APIs in quick time. Previously we published some concepts with different technologies like PHP and Java. This article will explain to you a more simple way to use external plugins to enrich your project APIs. Here you will…

Continue Reading

Create Angular NPM Package and Publish

Create Angular NPM Package and Publish Are you interested to create and publish NPM packages/libraries to enrich Angular functionality? Take a quick look at this post. You can share solutions with other developers. A simple package can solve many problems and resolve the issue quickly. If you are working with multiple applications? Package approach will help you to solve the…

Continue Reading

Deploy NodeJS Express Application to Firebase as Function.

Deploy NodeJS Express Application to Firebase as Function. Few days back I posted an article about how to implement restful apis using the Node Express and MySql. In this post I am going to discuss deploying NodeJS RESTful apis with Express framework to the Firebase functions. This is helpful when you deal with external endpoints which need secret keys. Google…

Continue Reading