January 2018
Intermediate to advanced
332 pages
7h 36m
English
Once we have the app created and instantiated, we will create the worker.js file first using the following commands from the root of your app:
cd src/appmkdir utilstouch worker.js
This will generate the utils folder and the worker.js file in it.
Note the following two things here:
Web workers are used to simulate the concept of multithreading in JavaScript, which is usually not the case. Also, since this thread runs in isolation, there is no way for us to provide dependencies to ...
Read now
Unlock full access