├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 undefined school 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 | # ![Notas sobre JavaScript Full Stack](https://i.imgur.com/r1niqs6.png) 2 | 3 |
4 |

5 | Buscás mentoreo en Desarrollo Full Stack JavaScript? 6 |

7 | 8 |

9 | 👉 undefinedschool.io 10 |

11 |
12 |
13 | 14 |
15 |

16 | 17 | Si el contenido te sirvió, podés invitarme un café y apoyarme para que siga escribiendo guías, apuntes y más contenido Open Source en español, gracias! ❤️ 18 | 19 |

20 | 21 |

22 | Invitame un café en cafecito.app 23 |

24 |
25 |
26 | 27 | ## 💼 [Tips para conseguir trabajo](https://github.com/undefinedschool/get-a-job.md) 28 | 29 | ## JavaScript 30 | 31 | ### Conceptos 32 | 33 | - **[`Funciones First-Class`](https://github.com/undefinedschool/notes-functions-first-class)** 34 | - **[`Callbacks`](https://github.com/undefinedschool/notes-callbacks)** 35 | - **[`Closures`](https://github.com/undefinedschool/notes-closures)** 36 | - **[`Event Loop`](https://github.com/undefinedschool/notes-event-loop)** 37 | 38 | ### ES6+ 39 | 40 | - **[`ES6: Array y Object Destructuring`](https://github.com/undefinedschool/notes-es6-destructuring)** 41 | - **[`ES6: Spread Operator`](https://github.com/undefinedschool/notes-es6-spread-operator)** 42 | - **[`ES6: Modules`](https://github.com/undefinedschool/notes-es6-modules)** 43 | - **[`ES6: Maps`](https://github.com/undefinedschool/notes-es6-maps)** 44 | - **[`ES6: Promises`](https://github.com/undefinedschool/notes-es6-promises)** 45 | - **[`ES2017: Async/Await`](https://github.com/undefinedschool/notes-es2017-async-await)** 46 | 47 | ## Frontend 48 | 49 | - **[`Manipulación del DOM`](https://github.com/undefinedschool/notes-dom)** 50 | - **[`Tailwind CSS`](https://github.com/undefinedschool/notes-tailwind-css)** 51 | - **[`React: Principios`](https://github.com/undefinedschool/notes-react-principles)** 52 | - **[`React: Conceptos Básicos`](https://github.com/undefinedschool/notes-react-basics)** 53 | - **[`React: Component Lifecycle`](https://github.com/undefinedschool/notes-react-component-lifecycle/)** 54 | - **[`React: Conceptos Avanzados` [WIP]](#)** 55 | - **[`React Hooks` [WIP]](https://github.com/undefinedschool/notes-react-hooks/)** 56 | - **[`Redux`](https://github.com/undefinedschool/notes-redux)** 57 | - **[`Webpack`](https://github.com/undefinedschool/notes-webpack)** 58 | - **[`NextJS` [WIP]](#)** 59 | 60 | ## Backend 61 | 62 | - **[`NodeJS`](https://github.com/undefinedschool/notes-nodejs)** 63 | - **[`ExpressJS`](https://github.com/undefinedschool/notes-expressjs)** 64 | - **[`APIs`](https://github.com/undefinedschool/notes-apis)** 65 | - **[`Bases de Datos Relacionales`](https://github.com/undefinedschool/notes-dbs)** 66 | - **[`Relaciones en DBs`](https://github.com/undefinedschool/notes-dbs-relationships)** 67 | - **[`SQL`](https://github.com/undefinedschool/notes-sql)** 68 | - **[`Autenticación` [WIP]](https://github.com/undefinedschool/notes-auth)** 69 | 70 | ## TypeScript 71 | 72 | - **[`Conceptos Básicos` [WIP]](#)** 73 | 74 | ## Paradigmas 75 | 76 | - **[`Programación Orientada a Objetos en JS`](https://github.com/undefinedschool/notes-oop-js)** 77 | - **[`Programación Funcional en JS`](https://github.com/undefinedschool/notes-fp-js)** 78 | 79 | ## Otros 80 | 81 | - **[`Deployments`](https://github.com/undefinedschool/notes-deployment)** 82 | - **[`Git Rebase vs Git Merge`](https://github.com/undefinedschool/notes-rebase-vs-merge)** 83 | --------------------------------------------------------------------------------