How to prevent cross-site scripting using CSP (Content security policy) in React frontend
CSP is a security standard that prevents cross-site scripting(XSS), clickjacking and other code injection attacks. Usually adding CSP to a React application is easy. However while implementing the CSP into an react application with Craco, we need to handle the inline...
My experience of writing REST API for third party systems
Have you written a REST API from scratch that requires to be consumed by third party systems? How was your experience? Did you face any problems or was it a smooth transition? Were there any changes introduced in the interface after making the first...