- Babili: an ES6+ aware minifier based on the Babel toolchain (beta) https://github.com/babel/babili 11 comments javascript
Linking pages
- You might not need to transpile your JavaScript | by Alex Ewerlöf (moved to substack) | We’ve moved to freeCodeCamp.org/news | Medium https://medium.com/@alexewerlof/you-might-not-need-to-transpile-your-javascript-4d5e0a438ca 36 comments
- GitHub - Rich-Harris/butternut: The fast, future-friendly minifier https://github.com/rich-harris/butternut 21 comments
- GitHub - vuesomedev/babel-webpack-tree-shaking: Tree-shaking example with Babel and Webpack https://github.com/blacksonic/babel-webpack-tree-shaking 12 comments
- You might not need to transpile your JavaScript https://www.freecodecamp.org/news/you-might-not-need-to-transpile-your-javascript-4d5e0a438ca/ 5 comments
- GitHub - SimulatedGREG/electron-vue: 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. https://github.com/SimulatedGREG/electron-vue 5 comments
- ES6 browser support: is it time to rethink bundling? | Contentful https://www.contentful.com/blog/2017/04/04/es6-modules-support-lands-in-browsers-is-it-time-to-rethink-bundling/ 4 comments
- You might not need to transpile your JavaScript https://medium.freecodecamp.org/you-might-not-need-to-transpile-your-javascript-4d5e0a438ca 1 comment
- Browser module loading - can we stop bundling yet? https://sgom.es/posts/2017-06-30-ecmascript-module-loading-can-we-unbundle-yet/ 0 comments
- GitHub - shaikh-shahid/awesome-node: Best Node.js tools, libraries, frameworks and resources. https://github.com/shaikh-shahid/awesome-node 0 comments
- How to do proper tree-shaking in Webpack 2 | by Gábor Soós | Emarsys Craftlab https://blog.craftlab.hu/how-to-do-proper-tree-shaking-in-webpack-2-e27852af8b21 0 comments
- You might not need to transpile your JavaScript https://medium.freecodecamp.com/you-might-not-need-to-transpile-your-javascript-4d5e0a438ca 0 comments
- GitHub - sdgluck/tiny-tim: a tiny timer < 160 bytes https://github.com/sdgluck/tiny-tim 0 comments
Linked pages
- ECMAScript 6 compatibility table http://kangax.github.io/compat-table/es6/ 367 comments
- GitHub - babel/babel: 🐠 Babel is a compiler for writing next generation JavaScript. https://github.com/babel/babel 57 comments
- Babel · The compiler for next generation JavaScript http://babeljs.io/repl/#?experimental=true&evaluate=true&loose=false&spec=false&code=function%20example()%7B%0A%20%20%0A%20%20%20%20class%20Actions%20%7B%0A%20%20%20%20%20%20%40Observable%0A%20%20%20%20%20%20static%20processSomething%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20class%20Store%20%7B%0A%20%20%20%20%20%20constructor(name)%7B%0A%20%20%20%20%20%20%20%20this.name%20%3D%20name%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%0A%20%20%20%20%20%20%40Observable%0A%20%20%20%20%20%20updater%0A%20%20%20%20%20%0A%20%20%20%20%20%20%40Observe(Actions.processSomething)%0A%20%20%20%20%20%20processHandler%20%3D%20function(data)%20%7B%20%0A%20%20%20%20%20%20%20%20this.updater.notify(this.name%20%2B%20%22%20processed%20%22%20%2B%20data)%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20var%20myStoreA%20%3D%20new%20Store(%22Store%20A%22)%3B%0A%20%20%20%20var%20myStoreB%20%3D%20new%20Store(%22Store%20B%22)%3B%0A%20%20%20%20%0A%20%20%20%20var%20print%20%3D%20function(result)%7B%0A%20%20%20%20%20%20console.log(result)%3B%0A%20%20%20%20%7D%0A%20%20%20%20myStoreA.updater.on(print)%0A%20%20%20%20myStoreB.updater.on(print)%0A%20%20%20%20Actions.processSomething.notify(%221010110%22)%0A%7D%0A%0A%0A%0A%0A%0A%0A%2F%2F%2FAll%20the%20magic%20happens%20down%20here%0Aclass%20ObservableClass%20%7B%0A%20%20subscriptions%20%3D%20%5B%5D%3B%0A%20%20%0A%20%20on%20%3D%20function(handler)%7B%0A%20%20%20%20this.subscriptions.push(handler)%0A%20%20%7D%0A%0A%20%20notify%20%3D%20function()%7B%0A%20%20%20%20var%20args%20%3D%20arguments%3B%0A%20%20%20%20for(var%20i%20%3D%200%20%3B%20i%20%3C%20this.subscriptions.length%3B%20i%2B%2B)%7B%0A%20%20%20%20%20%20this.subscriptions%5Bi%5D.apply(null%2Cargs)%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A%0Afunction%20Observable(target%2Ckey%2Ce)%20%7B%0A%20%20%20%20e.initializer%20%3D%20function()%7B%20return%20new%20ObservableClass()%3B%20%7D%0A%7D%0A%0Afunction%20Singleton(target%2Ckey%2Ce)%20%7B%0A%20%20%20%20e.initializer%20%3D%20function()%7B%20return%20new%20target()%3B%20%7D%0A%7D%0A%0Afunction%20Observe(observable)%20%7B%0A%20%20%20%20return%20function(classType%2Ckey%2Cd)%20%7B%0A%20%20%20%20%20%20var%20tempInitializer%20%3D%20d.initializer%3B%0A%20%20%20%20%20%20var%20blah%20%3D%20%20function()%20%7B%7D%3B%0A%20%20%20%20%20%20%0A%20%20%20%20%20%20blah.initializer%20%3D%20function()%7B%0A%20%20%20%20%20%20%20%20%20%20var%20val%20%3D%20tempInitializer.apply(arguments)%3B%0A%20%20%20%20%20%20%20%20%20%20observable.on(val.bind(this))%0A%20%20%20%20%20%20%20%20%20%20return%20val%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20return%20blah%3B%0A%20%20%7D%0A%7D%0A%0Aexample()%3B 51 comments
- GitHub - lerna/lerna: Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository. https://github.com/lerna/lerna 4 comments
- GitHub - babel/babylon: PSA: moved into babel/babel as @babel/parser --> https://github.com/babel/babylon 0 comments
Would you like to stay up to date with Web Development? Checkout Web Development
Weekly.
Related searches:
Search whole site: site:github.com
Search title: GitHub - babel/minify: An ES6+ aware minifier based on the Babel toolchain (beta)
See how to search.