Skip to content

Instantly share code, notes, and snippets.

@azu
Created December 31, 2015 06:06
Show Gist options
  • Save azu/0272ba9020f5e1955cb4 to your computer and use it in GitHub Desktop.
Save azu/0272ba9020f5e1955cb4 to your computer and use it in GitHub Desktop.
Electron startup time
// LICENSE : MIT
"use strict";
// call from node
exports.start = function () {
global.profile_startTime = Date.now();
};
// call from renderer
exports.stop = function () {
var ms = Date.now() - require('remote').getGlobal('profile_startTime');
console.log("profile", ms + "ms");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment