Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.72 KB

README.md

File metadata and controls

40 lines (26 loc) · 1.72 KB

  • Live Server:
    • Open up your terminal/command prompt/command line.
    • Navigate to the Daily-Task directory.
    • *Type npm install to install devDependencies.
    • *Then type gulp and press Enter and wait for some seconds.
    • And There should be a live server at http://localhost:9999.

*Note: Make sure that you've installed the node.js and gulpjs on your machine. (I've written little guide below in case you've not already)


Installing node.js:

Installing gulpjs: [when you hit npm install, gulp will be installed in current directory]

  • To install gulpjs globally: [First, Make sure you've installed nodejs.]

    • Type below command in your command line and press Enter
      • npm install --global gulp
  • **To install gulpjs in your Project devDependencies: [First, Make sure you've installed nodejs.]

    • Type below command in your command line and press Enter
      • npm install --save-dev gulp

** If you only install gulp in Project devDependencies then [1] It will not work in your command line. Thus You've to install it globally first, to run the command gulp.

[1] As tested in Windows 8, The gulp command isn't working without installing it globally.


MIT (c) Kaushalya Mandaliya