The State Of JavaScript: Front-End Frameworks

As expected, React takes the lead. It certainly seems like everybody and their dog wants to learn React these days

.. This would seem to confirm that React and Vue are not all hype: they genuinely provide good developer experiences.

.. For example, I’m willing to bet Angular’s market share is still huge, but would that be reason enough to pick it for your next project, especially knowing that 56% of Angular developers wouldn’t want to use it again?

zxcvbn-async.min file is loading for all pages

PR doesnt register that script so it wont help whether you use an older version or newer version. the problem the way that script is being registered is wrong. You can however deregister, register again and enqueue back the script.

add_action('wp_enqueue_scripts','zxcvbn_script_fix',1);
function zxcvbn_script_fix(){
    wp_deregister_script( 'zxcvbn-async' );
    wp_register_script('zxcvbn-async', '//YOUDOMAIN.com/wp-includes/zxcvbn-async.min.js',array(),'1.0');
}