Skip to content

Instantly share code, notes, and snippets.

View alexlopez-natgeo's full-sized avatar

Alex Lopez alexlopez-natgeo

  • National Geographic
View GitHub Profile
@alexrqs
alexrqs / nodejsTiming.js
Last active July 16, 2023 17:48
Log nodejs hrtime to measure time of a process or function for nodejs
const start = new Date()
const hrstart = process.hrtime()
const simulateTime = 500
setTimeout(function(argument) {
// execution time simulated with setTimeout function
const end = new Date() - start
const hrend = process.hrtime(hrstart)
console.info('Execution time: %dms', end)
@alexrqs
alexrqs / videojs-plugin-events-logger.js
Last active April 24, 2025 16:22
VideoJS event list
// The events are from https://www.w3.org/TR/html5/semantics-embedded-content.html#media-elements-event-summary
import videojs from 'video.js'
const Plugin = videojs.getPlugin('plugin')
const EVENTS = [
'loadstart',
'progress',
'suspend',
'abort',
'error',