Click here to Skip to main content
15,880,796 members
Articles / Web Development / HTML
Article

Install Gulp and Bower using Visual Studio 2015 in ASP.NET 5 project.

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
22 Apr 2016CPOL4 min read 19.5K   150   6   3
How to use client side JavaScript toolkits such as Gulp and Bower with ASP.NET 5 project using Visual Studio 2015

Introduction

With release of Visual Studio 2015 and ASP.NET 5 developer has the ability to include some JavaScript toolkits like Gulp and Bower into their project which makes the development workflow so easy.

Contents of this article

  1. What is Gulp.
  2. What is Bower.
  3. Demo Slider project.

What is Gulp

In short Gulp is a task runner toolkit which is used to perform some recurring task like file clear, file concatenation, file minify, file uglify etc. It is built on NodeJS but is used by some other platforms like Java, .Net, PHP etc.

What is Bower

Bower is a package management tool. It manages the packages and it's dependencies used in the project. It automatically install the packages in the project which are configured in the bower.json file.

Demo Slider project

The demo project shows how to install Gulp and Bower in a Asp.Net 5 project. Here KheyaJQSlider package is used for sliding functionality which is published in GitHub.  Here Visual Studio 2015 community version is used as a IDE.

The steps are as follows.

  1. Create a new project using Asp.Net 5 Empty template. The following image shows the template list.Image 1
  2. The newly created solution is shown below.
    Image 2

    Here wwwroot folder contains the files and folders which need to be published. Dependencies folder contains the node packages configured in the package.json file. The packages are not configured and downloaded yet. project.json file contains the configurations for asp.net server side packages. Startup class contains the configurations for HTTP request pipeline and other server side configurations needed for asp.net.

  3. To configure the NodeJS JavaScript packages required in the project  add the configuration file package.json in the solution. The following image makes it clear.Image 3

  4. Now change the devDependencies part of the package.json file with the following json object.
    "devDependencies": {
        "gulp": "3.8.11",
        "gulp-concat": "2.5.2",
        "gulp-cssmin": "0.1.7",
        "gulp-uglify": "1.2.0",
        "rimraf": "2.2.8"
    }
    

    After the file is saved Visual Studio automatically download the configured packages. Solution explorer with downloaded packages are shown below.

    Image 4
  5. To install the Gulp in the project  add the gulp configuration file gulpfile.js in the project. The following image makes it clear.Image 5

    The required nodejs packages for gulp are declared at top of the gulpfile.

    var gulp = require("gulp");
    var gulp_clean = require("rimraf");
    var gulp_concat = require("gulp-concat");
    var gulp_cssmin = require("gulp-cssmin");
    var gulp_uglify = require("gulp-uglify");

    "rimraf" package are used to remove the existing file. "gulp-concat" package is used to concatenate the declared files. "gulp-cssmin" package is used to minify the declared css file. "gulp-uglify" package is used to rectify the JavaScript files.

  6. Some of the tasks are declared in the gulpfile which are  executed recurrently are shown below.

    gulp.task("CleanJs", function (cb) {
        gulp_clean(gulpPaths.concatJsDest, cb);
    });
    
    gulp.task("CleanCss", function (cb) {
        gulp_clean(gulpPaths.concatCssDest, cb);
    });
    
    gulp.task('CopyJs', function () {
        gulp.src(gulpPaths.copyJs)
        .pipe(gulp.dest('./wwwroot/js'));
    });
    
    gulp.task('CopyCss', function () {
        gulp.src(gulpPaths.copyCss)
        .pipe(gulp.dest('./wwwroot/css'));
    });
  7. The gulp paths which are used as a source and destination are declared below.
    var gulpPaths = {
        webroot: "./wwwroot/"
    };
    
    gulpPaths.copyCss = ['./lib/font-awesome/css/*.css', './lib/KheyaJQSlider/css/*.css'];
    gulpPaths.copyJs = ['./lib/jquery/dist/*min.js', './lib/KheyaJQSlider/js/*.js'];
    gulpPaths.jsSrc = gulpPaths.webroot + "js/**/*.js";
    gulpPaths.minJsSrc = gulpPaths.webroot + "js/**/*.min.js";
    gulpPaths.cssSrc = gulpPaths.webroot + "css/**/*.css";
    gulpPaths.minCssSrc = gulpPaths.webroot + "css/**/*.min.css";
    gulpPaths.concatJsDest = gulpPaths.webroot + "js/site.min.js";
    gulpPaths.concatCssDest = gulpPaths.webroot + "css/site.min.css";

    The tasks declared in the gulpfile uses these directories to copy, minify and concatenate both css and js files.

    Here KheyaJQSlider is a JavaScript slider package uploaded in GitHub and is downloadable using Bower. It's dependencies are font-awesome and jquery. We shall come to know how to install this package using Bower later in this article.

  8. Now right click on gulpfile.js and select the Task Runner Explorer. Task Runner Explore is the Visual Studio tool for task management. Click on refresh button it will display the gulps configured task.

    Image 6

    By right click on a task and then click on Run one can run a task.

    Here "RunAll" task is declared as follows

    gulp.task("RunAll", ["RunClean", "RunMinJsCss"]);

    which runs another two tasks declared above it.

    gulp.task("RunClean", ["CleanJs", "CleanJs"]);
    gulp.task("RunMinJsCss", ["ConcatAndMinJs", "ConcatAndMinCss"]);

    Here "CleanJs", "CleanJs", "ConcatAndMinJs", "ConcatAndMinCss" are individual tasks.

  9. Now to install Bower in you project, add bower.json file in the solution. The following image shows that.
    Image 7

  10. Replace the dependencies property of bower file with the following.

    "dependencies": {
            "KheyaJQSlider": "*"
        }

    After save the file Bower will automatically download the configured packages and will also download its dependencies.

    One more changes for Bower is, expand the bower.json file and open the file with extension .bowerrc and change the directory to lib only. Now it will save the downloaded packages inside lib folder under solution folder. The following image shows that.

    Image 8
  11. Now run the task "RunCopy" from Task Runner Explorer. It will copy the css and js files from lib folder to wwwroot folder. The following image shows that.
    Image 9
  12. Now copy index.html and images folder from src folder of KheyaJQSlider package to wwwroot folder. The following image shows that.
    Image 10
  13. Open the index page and change the link of css and js files.
  14. Now right click on index page and view in browser. The browser will display "Hello World!". This is because of the project is not configured to render the html page. It is rendering the default text declared in Configure function of Startup class.
    public void Configure(IApplicationBuilder app)
    {
         app.UseIISPlatformHandler();
         app.Run(async (context) =>
         {
             await context.Response.WriteAsync("Hello World!");
         });
    }
  15. To make the static file working let add a new .net package in project.json file.
    "dependencies": {
            "Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final",
            "Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
            "Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final"
        }

    The last one need to download. After save the changes the newly added package will download automatically.

  16. Now open the Startup file and replace the Configure function with the following statements.

    public void Configure(IApplicationBuilder app)
    {
          app.UseIISPlatformHandler();
          app.UseStaticFiles();
    }
  17. Finally run the index page again and now you can see  the slider. The image is shown below.
    Image 11

Conclusion

In conclusion I can say Gulp is a useful tool to manage the recurring tasks which are needed to complete before every build. It saves lot deployment time and makes the development easy. On the other hand Bower is a package management tool which manage the packages and its dependencies so easily in the project.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder http://softwarelandmarks.com/
Bangladesh Bangladesh
I am in Software Development for more than 12 years. I am expert on Microsoft Platform for Web Forms, MVC, MVC Core, Web API, Desktop App, PHP etc. I am also expert on jQuery, AngularJS, Bootstrap, Font Awesome, Telerik UI, Kendo UI etc. I know BackboneJS, KnockoutJS also. I am an article writer. I have many articles in CodeProject.

Email: khademulbasher@gmail.com

Comments and Discussions

 
Praiseacknowledgment Pin
ivike22-Jan-17 5:05
ivike22-Jan-17 5:05 
QuestionDefault Installation Pin
IrishChieftain26-Apr-16 6:33
IrishChieftain26-Apr-16 6:33 
AnswerRe: Default Installation Pin
Khademul Basher26-Apr-16 16:43
Khademul Basher26-Apr-16 16:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.