React Router tutorial Original author: Ruan Yifeng Date: May 25, 2016 Really learning React is a long process. You will find that it is not a library, nor a framework, but a huge system. If you want to use its power, the entire technology stack must be transformed with it. You have to learn a… Continue reading React Router tutorial
Month: April 2021
Cross-domain resource sharing CORS detailed explanation
Cross-domain resource sharing CORS detailed explanation Original author: Ruan Yifeng Date: April 12, 2016 CORS is a W3C standard, the full name is “Cross-origin resource sharing” (Cross-origin resource sharing). It allows browsers to send XMLHttpRequest requests to cross-origin servers , thus overcoming the limitation that AJAX can only be used from the same source .… Continue reading Cross-domain resource sharing CORS detailed explanation
Browser Same Origin Policy and How to Avoid It
Browser Same Origin Policy and How to Avoid It Original author: Ruan Yifeng Date: April 8, 2016 The cornerstone of browser security is the ” same-origin policy ” ( same-origin policy ). Many developers know this, but they don’t fully understand it. This article describes in detail the various aspects of the “same-origin policy” and… Continue reading Browser Same Origin Policy and How to Avoid It
Systemd startup of Node application
Systemd startup of Node application Original author: Ruan Yifeng Date: March 12, 2016 The previous article introduced the operating commands and basic usage of Systemd . Today I will give an example of how to use Systemd to start a Node application. This article is independent and does not require the previous tutorial as prerequisite… Continue reading Systemd startup of Node application