Visual Studio has been one of my all time favorite text editors. This is Visual Studio Code Extensions Setup what I use. …
JAM stands for JavaScript, API & Markup. According to Mathias Biilmann (CEO & Co-founder of Netlify), [JAMstack is] a modern web development architecture based on client-side JavaScript, reusable APIs, and prebuilt Markup.A JAMstack app can be built u …
A typical CMS-driven website works by building each page on-demand, fetching content from a database and running it through a template engine. This means each page is assembled from templates and content on each request to the server. For mo …
Vue.js has been on a tear lately. What's Vue.js, you ask? 😲 It is a JavaScript framework to develop user interfaces released in 2014 by Evan You. With the core library, you can build the view layer of your application. For more requirement …
Markdown is a plain text formatting syntax, developed by John Gruber. To create a markdown document, all you need is a text editor and have some grasp over it's syntax. You might wonder why you should bother with the markdown, since your favorite word proce …
TypeScript is an open-source programming language developed by Microsoft. With adoption from many popular libraries and frameworks, TypeScript has secured its own place alongside ES6 as one of the preferred JavaScript flavors. There are strong opinion …
Just as you can lint the JavaScript or TypeScript code in a web application, you can also lint the SASS (or SCSS) files using stylelint. stylelint is a widely used linter that works with SCSS, Sass, Less and SugarSS. It supports a plugin sy …
Prettier is an opinionated code formatter that formats the code in a consistent style. It supports popular languages, libraries, and frameworks in the Node.js ecosystem and is widely used to enforce the style practices. In this gist, we'll integrate it with a Node.j …