Difference between revisions of "JavaScript"
(adds Greasemonkey info; cleanup) |
(Info on ECMAScript 6) |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | Get [[wp:Greasemonkey]] ([https://addons.mozilla.org/en-US/firefox/addon/748 here]) so that you can have your browser be even more useful. You might even want to use | + | Get [[wp:Greasemonkey]] ([https://addons.mozilla.org/en-US/firefox/addon/748 here]) so that you can have your browser be even more useful. You might even want to use [http://monkey.coolspacer.com/ Super Greasemonkey] if you like using the awesome [http://jquery.com/ JQuery] library. I'm hoping that Super Greasemonkey makes it into the official version, and that you can specify in your script which JQuery library to run (like Google's hosted JQuery scripts) making it easier to keep compatibility with the JQuery API version and also avoiding the need to bundle JQuery. |
* [[MediaWiki/js]] talks about using JavaScript in MediaWiki | * [[MediaWiki/js]] talks about using JavaScript in MediaWiki | ||
* User Scripts are JavaScripts that you insert into your web browser such as Greasemonkey scripts. Userscripts.org is the open source repository of Grease Monkey scripts. | * User Scripts are JavaScripts that you insert into your web browser such as Greasemonkey scripts. Userscripts.org is the open source repository of Grease Monkey scripts. | ||
+ | * [[MediaWiki/Presentation]] describes methods to produce presentations from your wiki | ||
− | + | == JavaScript Libraries == | |
− | + | JQuery is included with [[Drupal]], and is also used in many other projects. | |
− | + | In this slideshow, you can [http://slideshow.rubyforge.org/jquery.html compare JQuery with Prototype] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | === [http://underscorejs.org/ Underscore.js] === | |
− | |||
− | + | Underscore is a JavaScript library that provides a whole mess of useful functional programming helpers without extending any built-in objects. It�s the answer to the question: �If I sit down in front of a blank HTML page, and want to start being productive immediately, what do I need?� � and the tie to go along with jQuery's tux and Backbone's suspenders. | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | == JavaScript Callbacks == | |
− | + | A great explanation of what are Callbacks and how to use them: http://javascriptissexy.com/understand-javascript-callback-functions-and-use-them/ | |
− | |||
− | |||
− | + | == JavaScript SourceMaps == | |
− | + | Debug minified sources in FireFox or Chrome | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | * [https://www.html5rocks.com/en/tutorials/developertools/sourcemaps/ tutorial] | |
+ | * [https://developer.mozilla.org/en-US/docs/Tools/Debugger/Source_map_errors Debugging Source map errors] | ||
− | + | == JavaScript 6 == | |
− | + | ||
− | + | * Basic overviews: | |
− | + | ** [https://github.com/lukehoban/es6features https://github.com/lukehoban/es6features] | |
− | + | ** [https://blog.pragmatists.com/top-10-es6-features-by-example-80ac878794bb https://blog.pragmatists.com/top-10-es6-features-by-example-80ac878794bb] | |
− | + | * Outstanding book: | |
− | + | ** [http://exploringjs.com/es6/ http://exploringjs.com/es6/] | |
− | + | * The "Can I use?"... | |
− | + | ** [https://kangax.github.io/compat-table/es6/ https://kangax.github.io/compat-table/es6/] | |
− | + | * Sandbox: | |
− | + | ** [https://es6console.com/ https://es6console.com/] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
[[Category:JavaScript]] | [[Category:JavaScript]] | ||
[[Category:Wiki]] | [[Category:Wiki]] | ||
+ | [[Category:Front-end]] | ||
+ | [[Category:Back-end]] | ||
+ | [[Category:Server]] | ||
+ | [[Category:Node]] | ||
+ | [[Category:Node.js]] | ||
+ | [[Category:Source]] | ||
+ | [[Category:Programming]] | ||
+ | [[Category:Code]] |
Latest revision as of 11:45, 19 December 2018
Get wp:Greasemonkey (here) so that you can have your browser be even more useful. You might even want to use Super Greasemonkey if you like using the awesome JQuery library. I'm hoping that Super Greasemonkey makes it into the official version, and that you can specify in your script which JQuery library to run (like Google's hosted JQuery scripts) making it easier to keep compatibility with the JQuery API version and also avoiding the need to bundle JQuery.
- MediaWiki/js talks about using JavaScript in MediaWiki
- User Scripts are JavaScripts that you insert into your web browser such as Greasemonkey scripts. Userscripts.org is the open source repository of Grease Monkey scripts.
- MediaWiki/Presentation describes methods to produce presentations from your wiki
Contents
JavaScript Libraries[edit | edit source]
JQuery is included with Drupal, and is also used in many other projects. In this slideshow, you can compare JQuery with Prototype
Underscore.js[edit | edit source]
Underscore is a JavaScript library that provides a whole mess of useful functional programming helpers without extending any built-in objects. It�s the answer to the question: �If I sit down in front of a blank HTML page, and want to start being productive immediately, what do I need?� � and the tie to go along with jQuery's tux and Backbone's suspenders.
JavaScript Callbacks[edit | edit source]
A great explanation of what are Callbacks and how to use them: http://javascriptissexy.com/understand-javascript-callback-functions-and-use-them/
JavaScript SourceMaps[edit | edit source]
Debug minified sources in FireFox or Chrome
JavaScript 6[edit | edit source]
- Basic overviews:
- Outstanding book:
- The "Can I use?"...
- Sandbox: