MEMarvin Espirainespiramarvin.hashnode.dev·Dec 8, 2022 · 1 min readUpgrade / Switch Node version with NVM (Node Version Manager)Start by updating the package repository with the command: sudo apt update Install NVM using the curl command: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash Alternatively, you use wget and run the command: wget -q...00
MEMarvin Espirainespiramarvin.hashnode.dev·Sep 29, 2022 · 6 min readReact ComponentsYou've ever experienced that bad feeling of not remembering the simple things about an ecosystem you mastered while learning that craft? I know the feeling. That's the sole reason I'm writing this overview of React components(Functional, Class, HOC, ...00
MEMarvin Espirainespiramarvin.hashnode.dev·Jul 19, 2021 · 3 min readVuejs V-Model Support without need for value prop.Have you ever wished to create a component that supports the v-model directive, but works without it as well? <input v-model="searchText"> turns into <input v-bind:value="searchText" v-on:input="searchText = $event.target.value" > As you can se...00