Skip to content

Instantly share code, notes, and snippets.

View jhnns's full-sized avatar
🧀
When in doubt add cheese!

Johannes Ewald jhnns

🧀
When in doubt add cheese!
View GitHub Profile
@jhnns
jhnns / index.json
Last active April 11, 2018 14:02
The most used JavaScript libraries according to the HTTP archive based on the 2017-5-15 crawl (https://bigquery.cloud.google.com/table/httparchive:scratchspace.2017_05_15_js_libs). The `popularId` property relates to [this list](https://gist.github.com/jhnns/94188ba0904a82bbd0491bb21b041ce8)
[
{
"name": "jQuery",
"count": 394157,
"type": "dom-library",
"onGitHub": true,
"popularId": "jquery/jquery"
},
{
"name": "jQuery UI",
@jhnns
jhnns / index.json
Last active May 31, 2017 15:28
Github stars history of Marionette. Compiled with https://github.com/jhnns/popular-javascript-projects
[
"2011-12-12T16:36:09Z",
"2011-12-12T16:36:09Z",
"2011-12-12T16:36:09Z",
"2011-12-12T16:36:09Z",
"2011-12-12T16:36:09Z",
"2011-12-12T16:36:09Z",
"2011-12-12T16:36:09Z",
"2011-12-12T16:36:09Z",
"2011-12-12T16:36:09Z",
@jhnns
jhnns / index.json
Last active May 31, 2017 15:28
Github stars history of Dojo 1. Compiled with https://github.com/jhnns/popular-javascript-projects
[
"2013-05-20T05:37:29Z",
"2013-05-21T09:13:25Z",
"2013-05-22T18:38:51Z",
"2013-05-22T21:48:43Z",
"2013-05-25T15:49:10Z",
"2013-05-26T00:17:50Z",
"2013-05-27T19:55:31Z",
"2013-05-28T22:25:29Z",
"2013-05-29T06:30:07Z",
@jhnns
jhnns / index.json
Last active May 31, 2017 15:29
Github stars history of Knockout. Compiled with https://github.com/jhnns/popular-javascript-projects
[
"2010-07-05T08:08:34Z",
"2010-07-05T08:08:34Z",
"2010-07-05T08:08:34Z",
"2010-07-05T08:08:34Z",
"2010-07-05T08:08:34Z",
"2010-07-05T08:08:34Z",
"2010-07-05T08:08:34Z",
"2010-07-05T08:08:34Z",
"2010-07-05T08:08:34Z",
@jhnns
jhnns / index.json
Last active May 31, 2017 15:29
Github stars history of Ember. Compiled with https://github.com/jhnns/popular-javascript-projects
[
"2011-05-25T23:39:40Z",
"2011-05-25T23:39:40Z",
"2011-05-25T23:39:40Z",
"2011-05-25T23:39:40Z",
"2011-05-25T23:39:40Z",
"2011-05-25T23:39:40Z",
"2011-05-25T23:39:40Z",
"2011-05-25T23:39:40Z",
"2011-05-25T23:39:40Z",
@jhnns
jhnns / index.json
Last active May 31, 2017 15:29
Github stars history of Backbone. Compiled with https://github.com/jhnns/popular-javascript-projects
[
"2010-09-30T19:41:28Z",
"2010-09-30T19:41:28Z",
"2010-09-30T19:41:28Z",
"2010-09-30T19:41:28Z",
"2010-09-30T19:41:28Z",
"2010-09-30T19:41:28Z",
"2010-09-30T19:41:28Z",
"2010-09-30T19:41:28Z",
"2010-09-30T19:41:28Z",
@jhnns
jhnns / index.json
Last active May 31, 2017 15:30
Github stars history of Express. Compiled with https://github.com/jhnns/popular-javascript-projects
[
"2009-06-26T18:56:01Z",
"2009-06-26T18:56:01Z",
"2009-06-26T18:56:01Z",
"2009-06-26T18:56:01Z",
"2009-06-26T18:56:01Z",
"2009-06-26T18:56:01Z",
"2009-06-26T18:56:01Z",
"2009-06-26T18:56:01Z",
"2009-06-26T18:56:01Z",
@jhnns
jhnns / example.js
Created May 16, 2017 14:00
CJS consuming an ESM
const driverPromise = import("dbdriver");
exports.readFromDb = async (query) => {
return (await driverPromise).read(query);
};
@jhnns
jhnns / a.js
Last active May 15, 2017 14:55
Comparison of ambiguous grammar edge cases
console.log(this);
@jhnns
jhnns / a.js
Last active May 23, 2017 17:17
Bundle example
export let number = 42;
export function incr() {
number++;
}