JavaScript is the leading web development programming language in the world, especially in the front-end UI/UX development. But, the Node.js has leveraged the JavaScript to the server-side web development. The…
Latest Posts - Page 2
Server Side Render ReactJS Application
Server Side Rendering or SSR means you pre-render the markup of a front-end framework on a back-end system before delivering to users. A guide to do Static Pre-render of reactjs…
How to Deploy React JS application
This is a how to guide to deploy a react js application to production using Continuous Integration / Deployment and also using traditional methods.
Multiple Serialisers in Django ModelViewSet
how to employ different serialiser for same ModelViewSet in Django Rest Framework.
Security Myths
With identity theft on the rise and malware attacks constantly hitting the headlines, protecting one’s private data should be a top priority for every Internet user. But for something that…
Security in Online Payment Methods
Businesses moving to internet for distribution mode of payments is also switching to cashless and internet based. This article discusses on the security aspects of online payments.
Unit Testing in Python using assertAlmostEqual
The assertAlmostEqual(x, y) method in Python's unit testing framework tests whether x and y are approximately.
Clean Docker Images
Each time docker makes a rebuild a new image file is added up which consumes a decent amount of disk space, this is how to get…