Skip to main content

Posts

Showing posts with the label Node

Create and execute Angular Project using Yeoman. Grunt, Bower

Today we shall see on how to create and fasten the development of angular js using available Angular tools. Here we discuss more on tools like yo, grunt and bower. Yo  handles the scaffolding of the application. creates the structure of the application. Grunt  Concentrates on the build process. grunt helps in automating the tasks. the less work you have to do when performing the repetetive tasks like minification, uglyfing, watching files. Bower  mainly used in managing the application dependencies. Bower works by fetching and installing packages all over and saves the dependencies you are looking for.. By using these tools the user can concentrate more on feature development. So using these tools creates the development structure, runs the code in localhost, reloading the page when code changes. There are thousands of grunt plugins available which can make our tasks simple. Same for the bower which make development simple by adding the required dependencies and k...