- Question on syntax found in example https://github.com/coryhouse/react-slingshot?utm_source=SitePoint&utm_medium=email&utm_campaign=Versioning 4 comments reactjs
Linking pages
- Why I Left Gulp and Grunt for npm Scripts | by Cory House | Medium https://medium.com/@housecor/why-i-left-gulp-and-grunt-for-npm-scripts-3d6853dd22b8?1= 172 comments
- 12 Rules for Professional JavaScript in 2016 | by Cory House | Medium https://medium.com/@housecor/12-rules-for-professional-javascript-in-2015-f158e7d3f0fc 142 comments
- GitHub - HiFaraz/node-playbook: Get started fast with Node.js https://github.com/hifaraz/node-playbook 115 comments
- Why I Left Gulp and Grunt for npm Scripts https://medium.freecodecamp.com/why-i-left-gulp-and-grunt-for-npm-scripts-3d6853dd22b8 42 comments
- react_samples_list.md · GitHub https://gist.github.com/sAbakumoff/7b8510adcb16bded189d747e34f5e114 23 comments
- GitHub - xgrommx/awesome-redux: Awesome list of Redux examples and middlewares https://github.com/xgrommx/awesome-redux 8 comments
- Angular 2 versus React: There Will Be Blood https://medium.freecodecamp.com/angular-2-versus-react-there-will-be-blood-66595faafd51#.kyzcweooe 1 comment
- 5 Tools for Faster Development in React | by Jonathan Saring | Bits and Pieces https://blog.bitsrc.io/5-tools-for-faster-development-in-react-676f134050f2 0 comments
- 11 React Boilerplates and Starter Kits for 2019 | by Jonathan Saring | Bits and Pieces https://blog.bitsrc.io/11-react-application-boilerplates-for-2019-b49a8226ea54 0 comments
- Stunning React Boilerplates and Starter Kits for 2019 | Web Design and Web Development news, javascript, angular, react, vue, php https://www.ma-no.org/en/content/index_stunning-react-boilerplates-and-starter-kits-for-2019_2400.php 0 comments
- 7 Ways to Create a New React Application | Bits and Pieces https://blog.bitsrc.io/6-best-ways-to-create-a-new-react-application-57b17e5d331a 0 comments
- How I reduced the size of my Webpack bundle by 1000% | by mrbar42 | Medium https://medium.com/@mrbar42/how-i-reduced-the-size-of-my-webpack-bundle-by-1000-f4d74894c2e5 0 comments
- 27 popular new github repositories for web developers in 2016 | by Alexander Moskovkin | HackerNoon.com | Medium https://medium.com/@NaviHenry1/27-popular-new-github-repositories-for-web-developers-in-2016-27cdcbba9779#.7evpdc8zo 0 comments
- Notes from my first React + Redux project | by Alex Escalante | Audelabs | Medium https://medium.com/audelabs/notes-from-my-first-react-redux-project-3f799beeb140#.6da6du9vi 0 comments
Linked pages
- EditorConfig https://editorconfig.org/ 441 comments
- React – A JavaScript library for building user interfaces http://facebook.github.io/react/ 275 comments
- Node.js https://nodejs.org 198 comments
- Why I Left Gulp and Grunt for npm Scripts | by Cory House | Medium https://medium.com/@housecor/why-i-left-gulp-and-grunt-for-npm-scripts-3d6853dd22b8?1= 172 comments
- Git - Downloads https://git-scm.com/downloads 150 comments
- Jest · 🃏 Delightful JavaScript Testing http://facebook.github.io/jest/index.html 114 comments
- Sass: Syntactically Awesome Style Sheets http://sass-lang.com/ 75 comments
- webpack https://webpack.js.org 66 comments
- Download Python | Python.org https://www.python.org/downloads/ 65 comments
- Find and fix problems in your JavaScript code - ESLint - Pluggable JavaScript Linter http://eslint.org/ 61 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 - petehunt/webpack-howto https://github.com/petehunt/webpack-howto 38 comments
- GitHub - nvm-sh/nvm: Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions https://github.com/creationix/nvm 32 comments
- Babel · Babel https://babeljs.io/ 31 comments
- Learn ECMAScript6 by doing it http://es6katas.org/ 29 comments
- JavaScript Error Logging - TrackJS http://trackjs.com/ 15 comments
- https://facebook.github.io/flux/docs/overview.html#content 10 comments
- ECMAScript 6: New Features: Overview and Comparison http://es6-features.org 8 comments
- Building React Applications with Idiomatic Redux | egghead.io https://egghead.io/courses/building-react-applications-with-idiomatic-redux 6 comments
- Redux - A predictable state container for JavaScript apps. | Redux http://redux.js.org 6 comments
Would you like to stay up to date with Web Development? Checkout Web Development
Weekly.