VueJSHow to set Type with Typescript in Vuejs Data.To declare type in Data declaration in Vuejs, it's simple. Let's say you have a Typescript interface…March 04, 2021 1 min
JavascriptHow to remove space from String using JavascriptIf you want to format a string and remove all whitespace, like passing from 'Hello my name is Olive…February 04, 2021 1 min
NodeJSAccess package.json of Nodejs variables inside a Webapp.This article will show you how to quickly access Nodejs variables from package.json, for example the…January 26, 2021 1 min
NodeJSGet the size of a file in Nodejs and format it in human-readable size.First you'll need to start a new node server . Once it's done, lets see how to read file size on a…December 08, 2020 1 min
DevOpsAdd eslint on Nodejs or React project in Gitlab PipelineFirst create a new branch on your repo : git checkout -b feature/addEslintOnGitlabPipeline To…October 28, 2020 1 min
VueJSAdd VueJS reactivity on nested object properties not declared in dataI recently encountered an error on the render of one of my Vue component. I was not aware that if…September 28, 2020 1 min
JavascriptHow to convert a Number into a String using JavascriptYou want to convert a Number into a String , lucky you ! Javascript offers you differents ways to…September 17, 2020 1 min
GitDelete all local git branches in one command lineWhen developing you will create lots of local git branches. Let's see how to delete them all in once…August 07, 2020 1 min
JavascriptWait until a condition is true in a Javascript function.Sometime, you will launch a function at a precise time that will not meet the condition (data not…July 31, 2020 1 min
VueJSHow to bind a class with v-if state in VueJS.This little tweak will allow you to bind a certain css class to a VueJS component depending on state…July 28, 2020 1 min