├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 18 | .grunt 19 | 20 | # node-waf configuration 21 | .lock-wscript 22 | 23 | # Compiled binary addons (http://nodejs.org/api/addons.html) 24 | build/Release 25 | 26 | # Dependency directory 27 | node_modules 28 | 29 | # Optional npm cache directory 30 | .npm 31 | 32 | # Optional REPL history 33 | .node_repl_history 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # madridjs.github.io 2 | Official website 3 | 4 | # Recursos 5 | Esta es una recopilación de recursos para aprender/mejorar en el desarrollo JavaScript: 6 | 7 | * Libros: 8 | * [JavaScript: The Good Parts: The Good Parts](http://www.amazon.es/JavaScript-Good-Parts-ebook/dp/B0026OR2ZY/ref=sr_1_1?ie=UTF8&qid=1454058398&sr=8-1&keywords=douglas+crockford) 9 | * [JSBooks](http://jsbooks.revolunet.com/) 10 | * [JavaScript patterns, de Stoyan Stefanov](http://www.amazon.es/JavaScript-Patterns-Stoyan-Stefanov/dp/0596806752/) (inglés) 11 | * [Learning JavaScript design patterns, de Addy Osmani](http://www.amazon.es/Learning-JavaScript-Design-Patterns-Osmani/dp/1449331815/) (inglés) 12 | * [High performance JavaScript, de Nicholas Zakas](http://www.amazon.es/Performance-JavaScript-Faster-Application-Interfaces-ebook/dp/B0043D2F62/) (inglés) 13 | * [You don't know JS (book series), de Kyle Simpson](https://github.com/getify/You-Dont-Know-JS) (inglés), el primero de la serie, [Up and Comming](http://shop.oreilly.com/product/0636920039303.do), es gratis en formato digital. 14 | * [Exploring ES6, de Dr. Axel Rauschmayer](http://exploringjs.com/) (inglés) 15 | * Cursos en vídeo: 16 | * [Cursos en CodeSchool](https://www.codeschool.com/paths/javascript) 17 | * [Cursos en UDACITY](https://www.udacity.com/courses/web-development) 18 | * [Cursos en edx](https://www.edx.org/course?search_query=javascript) 19 | * Tutoriales 20 | * [You-Dont-Need-jQuery](https://github.com/oneuijs/You-Dont-Need-jQuery): chuleta 21 | * [JavaScript_Tips](https://developer.mozilla.org/en-US/docs/JavaScript_Tips) 22 | * [This is about one JS tip every day!](https://github.com/loverajoel/jstips) 23 | * Youtube: 24 | * [JavaScript and the Browser](https://www.youtube.com/watch?v=dibzLw4wPms) 25 | * [FunFunFunction](https://www.youtube.com/channel/UCO1cgjhGzsSYb1rsB4bFe4Q), canal de [@mpjme](https://twitter.com/mpjme) sobre JavaScript, programación funcional y desarrollo de software en general. 26 | * Tutoriales interactivos: 27 | * [free-programming-interactive-tutorials](https://github.com/vhf/free-programming-books/blob/master/free-programming-interactive-tutorials-en.md#javascript) 28 | * [Javascript modules beginners guide](https://medium.freecodecamp.com/javascript-modules-a-beginner-s-guide-783f7d7a5fcc#.rsu9tsc1w) 29 | * Otros: 30 | * [Guía de estilos de JavaScript de Google](http://google.github.io/styleguide/javascriptguide.xml) 31 | 32 | Influencers: 33 | * [Paul Irish](https://twitter.com/paul_irish), trabaja en las Chrome DevTools. 34 | * [Addy Osmani](https://twitter.com/addyosmani), ingeniero en Google, trabaja en el equipo de Chrome y Polymer. 35 | * [Dr. Axel Rauschmayer](https://twitter.com/rauschma), autor de varios libros y del blog [2ality.com](http://2ality.com), organizador de MunichJS. 36 | * [Otros](http://github-awards.com/users?country=united+states) 37 | --------------------------------------------------------------------------------