PPinei·Apr 3, 2019006 ways to write the same functionfunction getName(user) { return { name: user.name } } const getName = user => { return { name: user.name } } const getName = user => { const name = user.name return { name: name } } const getName = user => { const name = user.name r...Join discussion
PPinei·Feb 27, 201901Database version control for Node.jsHi I am looking for a Node.js tool for database version control and schema evolution, similar to Flyway for Java. Any recommendation?MMark commented
PPinei·Nov 16, 201810Vue.js with Semantic UIThis article presents a simple step-by-step to style a Vue.js application with Semantic UI default theme. How to add Semantic UI to your Vue project Semantic UI is a rich front-end framework for UI components, just like Bootstrap, strongly based on...Join discussion