Hacker News
- Exploring ES2016 Decorators https://medium.com/google-developers/exploring-es7-decorators-76ecb65fb841 8 comments
- Exploring ES7 Decorators - Addy Osmani https://medium.com/google-developers/exploring-es7-decorators-76ecb65fb841 19 comments javascript
Linking pages
- GitHub - Jayphen/Boilerplate-CRA2-Typescript-Emotion: A boilerplate for using the alpha version of Create-React-App 2 along with Typescript and Emotion support via react-app-rewired https://github.com/Jayphen/cra2-typescript-emotion 17 comments
- GitHub - birkir/react-suspense-demo: React Suspense Demo inspired by Dan's future api https://github.com/birkir/react-suspense-demo 10 comments
- GitHub - Arithmetics/pubg-advanced-stats: React app for front end of my PUBG API https://github.com/Arithmetics/pubg-advanced-stats 7 comments
- JavaScript Design Patterns https://able.bio/drenther/javascript-design-patterns--89mv2af 6 comments
- GitHub - hillscottc/plantapp: A React + MobX app for Plants data from USDA https://github.com/hillscottc/plantapp 6 comments
- GitHub - emergentbit/FirebaseReactAuthBoilerplate: A boilerplate react app with Firebase auth Google oauth2 provider https://github.com/emergentbit/FirebaseReactAuthBoilerplate 5 comments
- The decorator pattern in JavaScript using closures, monkey patching, prototypes, proxies and 'middleware' http://nickmeldrum.com/blog/decorators-in-javascript-using-monkey-patching-closures-prototypes-proxies-and-middleware 5 comments
- docker-compose-django-react/frontend at master · 18F/docker-compose-django-react · GitHub https://github.com/18f/docker-compose-django-react/tree/master/frontend 4 comments
- Creating custom JavaScript syntax with Babel | Tan Li Hau https://lihautan.com/creating-custom-javascript-syntax-with-babel/ 3 comments
- Level up your React architecture with MVVM | by Danijel Vincijanovic | COBE https://medium.cobeisfresh.com/level-up-your-react-architecture-with-mvvm-a471979e3f21 3 comments
- GitHub - gruberb/3REE-and-beyond: A collection of approved and curated articles about ES6/7, React,Redux, Immutable and Isomorphic JS apps https://github.com/gruberb/upgradetothelatestjsbuzz 3 comments
- GitHub - quangv/create-react-coffee-app: Create-react-app + Coffee-script, starter template https://github.com/quangv/create-react-coffee-app 2 comments
- Angular Component Composition - Part 1 - Introduction - Nicholas Boll http://nicholasboll.com/articles/angular-component-composition-part-1/ 0 comments
- Promises are meant to be broken: Cancelable Promises in JS for all! (or at least everyone on our team) | by Marc Cyr | hello JS https://blog.hellojs.org/cancelable-promises-for-all-or-at-least-everyone-on-our-team-27c0b8f46bcd 0 comments
- Better errors handling for ES/Typescript classes | by Taras Batenkov | Bits and Pieces https://blog.bitsrc.io/errors-handling-for-vue-class-components-2f152f7c7515 0 comments
- GitHub - Cosecha/redadalertas: A web app for crowdsourcing immigration raid data. https://github.com/Cosecha/redadalertas 0 comments
Linked pages
- 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
- Functional Mixins in ECMAScript 2015 http://raganwald.com/2015/06/17/functional-mixins.html 32 comments
- Higher-order function - Wikipedia https://en.wikipedia.org/wiki/Higher-order_function 30 comments
- ES6 generators in depth http://www.2ality.com/2015/03/es6-generators.html 24 comments
- Using ES.later Decorators as Mixins http://raganwald.com/2015/06/26/decorators-in-es7.html 18 comments
- GitHub - wycats/javascript-decorators https://github.com/wycats/javascript-decorators 15 comments
- Iterators gonna iterate - JakeArchibald.com http://jakearchibald.com/2014/iterators-gonna-iterate/ 14 comments
- GitHub - tc39/proposal-decorators: Decorators for ES6 classes https://github.com/tc39/proposal-decorators 1 comment
- http://elmasse.github.io/js/decorators-bindings-es7.html 0 comments
Would you like to stay up to date with Web Development? Checkout Web Development
Weekly.
Related searches:
Search whole site: site:medium.com
Search title: Exploring EcmaScript Decorators. Iterators, generators and array… | by Addy Osmani | Google Developers | Medium
See how to search.