Dart in Practice : Native messaging host implementation (Windows-users oriented)Apr 17, 2024·2 min read
Executable application package in Dart ecosystem - Windows OSIf you want to run your application package on local machine directly , you must add Dart SDK to system's PATH. Now if you read this reference and your project's package.yaml was setup correctly, all Jul 5, 2026·1 min read
Attaching a VSC debugger to remote browser – the guide you need to start debugging straight away !Jun 14, 2023·2 min read
Node.js module system + purge the cache for CJSLink to the article on my dev.to profileDec 7, 2021·1 min read
Two common ways to destruct modules in Node.jsDestructuring in CJS const {stdin: input, stdout: output} = require('process'); // Example exploiting Readline const rl_cjs = readline.createInterface({ input: process.stdin, output: process.Dec 1, 2021·1 min read
Shallow vs. Deep merge in React.jsThis definitely has not been told to you , unless you clever enough to pick up by oneself tho...Nov 19, 2021·5 min read
EventDispatch(er) vs. EventEmitterIntro EventTarget interface stands on top of the user-agent (browser), just like the EventEmitter class on top of Node.js or Genetics on top of Human Anatomy , you got the idea . Without Events processes (a process is a very important concept and eve...Nov 16, 2021·1 min read
Multitasking in Node.js – child process reviewThis is a live documented , stay tuned on this frequency !Nov 7, 2021·4 min read
Regex journey in Javascript #1Capturing group misconception in Regex Groups can be two types : capturing (used for backreference, some particularly significant meaning internally) |-- capturing groups might be labelled with names , but not mandatory ; non-capturing (used for i...Nov 1, 2021·2 min read