I am taking baby steps into the MEAN stack but can't figure out step 1, how to run my app. What do I use for a development web server and how do I start it in my directory?
If I just launch index.html as a file it will not work.
Here is my code
<!DOCTYPE html>
<html>
  <head lang="en">
    <meta charset="utf-8">
    <title>My Site</title>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js">    </script>
    <link rel="stylesheet" href="style.css">
<script>
  document.write('<base href="' + document.location + '" />');
</script>
<script src="app.js"></script>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/3.2.1/css/bootstrap-combined.min.css"
rel="stylesheet">
  </head>
  <body ng-app="myApp" ng-controller="MainCtrl"> 
    <a class="btn" ng-click="visible = true">Show the Form</a>
    <div ng-show="visible">I used to be hidden!</div>
  </body>
</html>
app.js
var app = angular.module( 'myApp', [] );
app.controller( 'MainCtrl', function( $scope ) {
  $scope.visible = false;
});
 
     
     
    