

You can create a hello world extension using Yoeman and a VSCode generator called 'generator-code'. Microsoft has pretty good documentation on how to create an extension for VSCode, but I was looking at creating an extension that could take some user input for the name of the file I was trying to create. This tool creates a folder named after the current date, and then creates a markdown file with some frontmatter for metadata. I created a command line tool for generating new blog posts a couple of years ago called 'blogpostgenerator'. These electron apps can run cross platform on Windows, MacOS and Linux. Web developers can use their existing skillsets to create application based on web technologies like HTML, CSS and JavaScript. Electron was created to make it easier for web developers to create desktop applications. VSCode code is built on top of Electron, a framework from GitHub that is based on Chromium and Node.js. These extensions are written in JavaScript. From the very beginning VSCode has been extensible, in other words you add functionality to it very easily with extensions. It is used for many different types of application development, everything from C++ to Salesforce. If you are not familiar with Visual Studio Code, or VSCode for short, it is Microsoft's open source code editor. One of those applications is one that I am using right now as I write this post, Visual Studio Code. There are a lot of applications now that are based on Node.js that you can extend using JavaScript. I recently wrote about creating your own tools using Node.js.
