How to run multiple npm scripts in parallel

In this article I will talk about a problem I ran into recently and a couple of the solutions I found.

From: Dan Vega

How to run multiple npm scripts in parallel

I was working on an exercise for our students and In the process I learned something new. When our students finish their exercises they are asked to run some tests to validate that their solution works. We also use these tests as a way to grade certain exercises.

From: Dan Vega

Tips for Vue Developers: Avoid directly manipulating the DOM

In this article I will look at an example of where manipulating the DOM in our components might not be the best approach.

From: Dan Vega

Personal Blogs: Don't Call it a comeback!

I'm not sure if you have noticed or not but the personal blog is making a comeback

From: Dan Vega

Personal Blogs: Don't Call it a comeback!

I'm not sure if you have noticed or not but the personal blog is making a comeback.

From: Dan Vega

Adding Twitter Cards to Gridsome

In this tutorial I will show you how to add Twitter Cards to your Gridsome Blog.

From: Dan Vega

Adding Twitter Cards to Gridsome

In a previous article, I showed you how you could add Twitter Cards to your blog. If you haven't gone through that post yet I would suggest doing so before reading this one.

From: Dan Vega

How to find the max id in an array of objects in JavaScript

A quick tutorial on the thought process on how you would go about finding the max id in an array of objects in JavaScript

From: Dan Vega

How to find the max id in an array of objects in JavaScript

I was recently putting together a tutorial for some students and I came across an issue that I am sure we have all come across at one time or another. I had this array of objects and in each object I had an id. I wanted a quick and efficient way to look at all of the ids and find the max id.

From: Dan Vega

Spring Initializr's Fresh New Look

In this article I will tell you what the Spring Initializr is and give you my thoughts on the new redesign.

From: Dan Vega

Spring Initializr's Fresh New Look

The Spring Team just announced that the Spring Initializr has been updated with a brand new UI and it is now available at http://start.spring.io. You can see a screen shot of it below but I have say my first impressions were all positive.

From: Dan Vega

Vue Event Handler Arguments

In this article you are going to learn how to pass arguments to your Vue event handlers as well as how get access to the original DOM event.

From: Dan Vega

Vue Event Handler Arguments

A fundamental skill in learning JavaScript and Vue is the ability to listen for events and handle them.

From: Dan Vega

Creating multiple directories in node

A quick tutorial on how to recursively create directories in node.

From: Dan Vega

Creating multiple directories in node

This is going to be a quick tutorial but I think it's one that I want to share. I am in the middle of migrating close to 1,000 blog posts from WordPress to Gridsome, a static site generator.

From: Dan Vega

How to add Twitter Card Meta Tags to your Blog

In this tutorial you will learn what a Twitter Card is along with step by step instructions how to add them to your blog and validate that they are working.

From: Dan Vega

How to add Twitter Card Meta Tags to your Blog

For those of you who haven't been reading my blog lately I am in the middle of converting my website from WordPress over to a static site generator called Gridsome that is built on VueJS.

From: Dan Vega

HTML Template Tag in Vanilla JavaScript and Vue

A look at what the HTML template tag is and how it can be used in Vanilla JavaScript as well as what its role in Vue is.

From: Dan Vega

HTML Template Tag in Vanilla JavaScript and Vue

For the past few months, I have been writing a ton of documentation, tutorials, and exercises around VueJS and Vanilla JavaScript.

From: Dan Vega

Creating your first npm package

How to create your first npm package and publish it.

From: Dan Vega