Javascript Programming Javascript Shorthand Coding Techniques In this blog post, I have compiled some helpful javascript shorthand coding techniques. Javascript shorthands are good coding techniques that can help programmers optimize and simplify their javascript codes. 1. If Presence At a point in our code, we need to check if a variable is present or not. The if present shorthand helps you […] Written by Clemence Ayekple January 26, 2020August 2, 2020
macOS Troubleshooting gyp: No Xcode or CLT version detected macOS Catalina gyp: No Xcode or CLT version Did you recently update your macOS Catalina to version 10.15.2? If you did, then you probably in the same boat too. What I immediately noticed from my terminal is this new shinny error about gyp: No Xcode or CLT version detected any time I ran either yarn install or […] Written by Allan Philip Barku January 20, 2020November 21, 2020
Frontend Javascript Javascript ES6 Array and Object Destructuring Array and Object Destructuring There are two most used data structures in javascript; array and object. Array and object destructuring is a significant feature in javascript ES6. ES6 Array Destructuring Usually, to access an item in an array, you would have to access the items via their indexes as shown below. However, you might want […] Written by Clemence Ayekple January 19, 2020August 3, 2020
Javascript Vue VS Code Extensions for Vue.js VS Code is a popular lightweight text editor in the development community. It has a lot of features that are similar to other text editors like Sublime Text and Atom.No doubt the power of the VS Code comes from the marketplace. One of the best features of Visual Studio Code is the tons of extensions […] Written by Clemence Ayekple January 13, 2020January 13, 2020
Javascript Colorize Terminal Output Nodejs Most developers today work with the terminal. It can be fun and extremely helpful to colorize the terminal output. I have seen a couple of articles using ANSI escape codes to colorize the console output. The module colors.js and chalk are available on npm. These packages provide extremely easy to use wrappers that make colorizing […] Written by Clemence Ayekple January 8, 2020January 8, 2020