Server
Development Server
The easiest way to get started developing your HTML app is to start a development server. To start off you will need to open the /source
folder contained in the download.
Installing node packages
Open a command prompt and change directory to the /source that was created when you unzipped the source folder and run this command
npm install
Note - This may take some time to install all the packages.
Running the development server
First make sure you have gulp-cli installed globally
npm -g install gulp-cli
The command to start a web server is
gulp serve
This should automatically open up a browser window with the website running.
Browsersync
Once the development server is up and running any changes you make to the HTML & JS & SASS files will be auto updated in your browser window.