To run this example:

First install all the depedencies
```shell
  npm install .
```
Next start the example:

```shell
  node app.js
```


Now visit http://localhost:3000/ in your browser 

*Next steps - Things to try doing with the example:*

1. Visit the documentation page and run all the test cases 

2. Visit the same website using the https URL 

i.e. https://loalhost:3443/

3. Submit the login form 

*Hints*

Run app.js with node-dev instead of node, it will automatically restart the server when you make changes to the code

```shell
sudo npm install -g node-dev

node-dev app.js

```
