Once you have installed the above dependencies:
cdinto the root of the new project folder and runnpm installfrom the command line
From the root of the project, several commands can be issued from terminal:
gulp: Runs the default Gulp task. This builds the project with source maps from theappfolder into thebuildfolder, spawns a Node server, opens a new browser with the website at http://localhost:3000, and listens for subsequent changes. When you edit and save a new file, Gulp will recompile accordingly and refresh your browser window with the latest changes automatically.gulp build: Builds project from theappfolder into thebuild, uglifies the JS, and minifies the CSS. This should generally be run prior to committing/pushing your code to the repo.