Adding task manager files

Task managers serves specific tasks in our application. In Chapter 9, Building a Frontend Process with Node.js and NPM, we will explore in depth their utilization in Node.js applications, but for now we focus on the file itself:

  1. Create a file called bower.json and add the following lines of code:
          { 
            "name": "chapter-07", 
            "version": "0.0.1", 
            "ignore": [ 
              "**/.*", 
              "node_modules", 
              "components" 
            ] 
          } 
     
    

    it's pretty simple code, but this file has the same importance as package.json for the server side. Bower will be the frontend task manager. Later in the chapter we will see how to use it. The next one is the Gulp file.

    Tip

    You can find more information about Gulp file at the official website: http://gulpjs.com/

  2. Create a file called ...

Get Node.js 6.x Blueprints now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.