Below is a VSCode with Golang video on mine on channel9 that I recorded at Channel 9 Studio, Redmond at Microsoft Campus (Seattle). Its a short introduction of using VSCode with Go Lang and how to debug in go lang using VSCode. Hope you enjoy. Taswar
Visual Studio 2013 provides Task Runner Explorer for us to run Grunt & Gulp task right inside of Visual Studio. One can download Task Runner Explorer from Visual Studio Gallery Once installed we can now use npm to install grunt for us in our node web project.
1 2 3 4 5 6 |
npm install grunt --save-dev //the command above will install into our package.json file "devDependencies": { "grunt": "^0.4.5" } |
We now will create a new Gruntfile.js […]
In my previous post I have shown how to create an express app with node.js and in this post, I would like to introduce bower a package manager for front-end development. Bower is a package manager just like Nuget, where it gets confusing is that node already has a package manager called npm. The difference […]
Here is a simple walk through of creating a express application with node.js using Visual Studio (NTVS). First lets launch visual studio and go to the JavaScript section and select the Blank Express Application. Once selected, I have named my application SimpleExpress, Visual Studio will start creating the skeleton of the project for you, and […]
Node Tools for Visual Studio is currently in Alpha 1.0 and its free and opensource, in this post I will show you how to install Node and Node Tools for Visual Studio (NTVS). First lets install Node.js Download Node from http://nodejs.org/ The currently version is node-v0.10.26-x64 Step one lets run the msi that we just […]