- 2018 - The Year of Web Components, Dominik Kundel
- The Lonely and Dark Road to Styling in React, Sara Vieira
- Next Generation Forms with React Final Form, Erik Rasmussen
- The ABC of Coded Style Guides, Henning Muszynski
- Testing, Testing, 1, 2, NaN, Gant Laborde
- Lambdas, lambdas everywhere..., Flavio Corpa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// UNION | |
// Siguiendo la analogía anterior, la unión de tipos sería entendida como | |
// el operador OR. | |
// La unión de tipos es muy util para indicar que una determinada | |
// entidad podrá ser de un tipo u otro, ámbos válidos. | |
// Por ejemplo, sin unión, tendriamos que recurrir al any para admitir | |
// argumentos de tipo string o númerico: |
This gists is just a compendium of usefull NPM commands commonly used in different languages.
This will ask you a bunch of questions, and then write a package.json for you.
It attempts to make reasonable guesses about what you want things to be set to, and then writes a package.json file with the options you've selected.
If you already have a package.json file, it'll read that first, and default to the options in there.