logo

What is CSP, learn more with Golang

In the security field, a Content Security Policy (CSP) is one of the important methods used to harden website security. CSPs help prevent cross-site scripting (XSS) attacks and data injection attacks by restricting the sources from which web pages can load resources.

How to save data in the browser

In web development, we often need to store and manage various data on the client side. In particular, when communicating with a server, we can store and use credentials or session information in the browser, and browsers provide several techniques for doing so. In this post, I’ll introduce you to the different ways to store data in the browser and their features.

What is CORS?

In web development, you may come across the message “CORS error”. In this article, we’ll take a look at what CORS is, why it’s important, and how it applies to web development.