Contents tagged with visual studio code
-
Refreshing the Windows icon cache
I just updated to the latest and greatest version of Visual Studio Code, but alas my taskbar was still showing the old icon:
From this GitHub comment, here's a quick way to force the shell to …
-
Braces on new lines in Visual Studio Code
Here there be dragons: Some people prefer their braces on the same line, some prefer them on the next line. If you're in the latter camp then the default in Visual Studio Code will annoy you - it's …
-
Using Visual Studio Code, Node.js and gulp.js to create a web application - Handling changes
This is going to be quite a short post, there's not a lot to getting the gulp script to re-process any changed files - but it's a very useful thing to have!
Other parts of this series
Using …
-
Using Visual Studio Code, Node.js and gulp.js to create a web application - Moving files around
Before I do too much more, I want to setup my build script / project to allow me to (a) make sure that everything in the .dev folder is kept apart from the app folder and set myself up so that I …
-
Using Visual Studio Code, Node.js and gulp.js to create a web application - Serving content
Once we've got the basics of the project setup, npm is working, gulp is installed and ready to go, next up is actually creating a starting gulp script and adding enough to it go get it to serve up …
-
Using Visual Studio Code, Node.js and gulp.js to create a web application - Getting started
I've written quite a few posts recently that touch on using Visual Studio Code, Node.js and gulp.js. This is entirely down to having started working on a product that uses all of these, along with …
-
Quick Tip: Running Visual Studio Code for the current directory
Lots of people probably already know this, but there are a couple of ways to open the current directory in an instance of Visual Studio Code. The obvious one is, if you've got a File Explorer window …
-
How to debug an AngularJS app in Visual Studio Code with Chrome
I've been using Visual Studio Code quite a bit recently as a project I'm working on is written in AngularJS, with gulp based build scripts. As this is part of my first real foray into using tech that' …
-
How to debug gulp tasks in Visual Studio Code - Gulp 4
I recently read an article about debugging gulp tasks in Visual Studio Code, which seemed like mana from heaven for me as I'm now working with nant, npm, gulp scripts, AngularJS and all the …