James Yoo
#javascript

Asynchronous in Javascript

17 March 2020 — Written by James
#javascript#programming

Javascript is a single-threaded, and all codes are executed in a sequence, not in a parallel fashion. In other words, unlike other languages such as Java, there is only one thread in Javascript, and it can be blocked by an expensive operation.

Read more →

Making Single-Page App in React with Django

01 February 2020 — Written by James
#react#javascript#python#django#programming

Creating a single page app in React is getting easier than the past. There are many readings on blogs, Stackoverflow and Github talking about making a SPA using React, and it should be sufficient in many cases.

Read more →
James Yoo