jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
Testing the speeds of jQuery Custom Events with AmplifyJS and PostalJs
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="https://rawgithub.com/appendto/amplify/master/lib/amplify.min.js">
</script>
<script src="https://rawgithub.com/jashkenas/underscore/master/underscore-min.js"></script>
<script src="https://rawgithub.com/postaljs/postal.js/master/lib/postal.min.js"></script>
<script>
var callback1 = function() {};
var callback2 = function() {};
var callback3 = function() {};
var payload = {
somekey: 'some value'
};
var body;
var channel = postal.channel();
// let's use jQuery.ready to make sure that the DOM is ready,
// before trying to work with it
jQuery(function() {
// we'll use the body element to exchange messages for jQuery
// if using deeper nested elements, jQuery will be slower, as custom events bubble
body = $('body');
// subscribe our callback1 function to the custom event for jQuery, only once
body.bind('my-event', callback1);
// subscribe our callback2 function to the message for PostalJs
channel.subscribe('my-event', callback2)
// Subscribe to Amplify
amplify.subscribe('my-event', callback3);
});
</script>
</body>
</html>
Ready to run.
Test | Ops/sec | |
---|---|---|
jQuery - trigger |
| ready |
AmplifyJs |
| ready |
PostalJs |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.