A book series on JavaScript. @YDKJS on twitter.
-
Updated
Oct 25, 2020
{{ message }}
ECMAScript is the standardization of script languages, including JavaScript. ECMA stands for the European Computer Manufacturer's Association.
A book series on JavaScript. @YDKJS on twitter.
JavaScript Style Guide
A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.
Cheatsheet for the JavaScript knowledge you will frequently encounter in modern projects.
Curated tutorial and resource links I've collected on React, Redux, ES6, and more
An extremely fast JavaScript bundler and minifier
The JavaScript Drag & Drop library your grandparents warned you about.
An Electron & Vue.js quick start boilerplate with vue-cli scaffolding, common Vue plugins, electron-packager/electron-builder, unit/e2e testing, vue-devtools, and webpack.
As mentioned in Automattic/wp-calypso#47370 (comment) and discussed in Automattic/wp-calypso#47181, the reusable summary item should be extracted to the @automattic/onboarding package, so that it can be reused also by other packages or apps.
WordPress starter theme with a modern development workflow
K6 http.post method isn't correctly encoding a list of values assigned to a key in an object.
const form_data = {
comment: "Hello world!",
topping: [
'onion',
'bacon',
'cheese'
]
};The simplest way to see this is to run the sample at
https://github.com/loadimpact/k6/blob/master/samples/html_form_post.js and note that it fails.
Too young, too simple. Sometimes, naive & stupid
js2flowchart - a visualization library to convert any JavaScript code into beautiful SVG flowchart. Learn other’s code. Design your code. Refactor code. Document code. Explain code.
A dependency-free JavaScript ES6 slider and carousel. It’s lightweight, flexible and fast. Designed to slide. No less, no more
Powerful data visualization library based on G2 and React.
Turn your ES5 code into readable ES6. Lebab does the opposite of what Babel does.
JavaScript diagramming library for interactive flowcharts, org charts, design tools, planning tools, visual languages.
Tomorrow's ECMAScript modules today!
Created by Brendan Eich, Ecma International
Released 1997
Since we are now only building Babel on Node.js 14 (even if we still test it on Node.js 6), we can use native ECMAScript modules for the build scripts:
There are a bunch of scripts/tests in the
scriptsfolder: they can probably all be rewritten to ES modules.We can probably add
"type": "module"to the top