Created
May 25, 2012 02:55
-
-
Save edwardhotchkiss/2785484 to your computer and use it in GitHub Desktop.
learning angular.js 1.0.0 blog post
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var app = angular.module('app', [], function($routeProvider) { | |
$routeProvider.when('/welcome', { | |
template : 'partials/welcome.html', | |
controller : WelcomeController | |
}); | |
$routeProvider.otherwise({ | |
redirectTo : '/welcome' | |
}); | |
}); | |
app.config(function($locationProvider) { | |
$locationProvider.hashPrefix(''); | |
$locationProvider.html5Mode(true); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p ng-bind-html="item.content | highlight:filterBy"></p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* controllers | |
*/ | |
WelcomeController.$inject = ['$scope', '$location']; | |
function WelcomeController($scope, $location) { | |
$scope.pageHeader = 'v0.0.1'; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function WelcomeController($scope) { | |
$scope.pageHeader = 'v0.0.1'; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Controller() { | |
var scope = this; | |
var context = this; | |
var self = this; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en" ng-app="app" ng-init=""> | |
<head> | |
<meta charset="utf-8"> | |
<title ng-bind-template="Node-Angular {{ site.leftCurleys }}pageTitle{{ site.rightCurleys }}">Node-Angular</title> | |
</head> | |
<body> | |
<div> | |
<ng-view></ng-view> | |
</div> | |
<script type="text/javascript" src="javascripts/vendor/angular-1.0.0rc2.min.js" ng:autobind></script> | |
<script type="text/javascript" src="javascripts/app.js"></script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo npm install angular -g | |
$ angular new myapp && cd myapp | |
$ npm install | |
$ angular server 8080 | |
$ open "http://localhost:8080" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @route /welcome | |
*/ | |
var path = require('path'); | |
module.exports = function(app) { | |
app.get('/welcome', function(request, response) { | |
var html = path.normalize(__dirname + '/../../public/index.html'); | |
response.sendfile(html); | |
}); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container" ng:init="$root.pageTitle = pageHeader"> | |
<h1 ng-bind-html="pageHeader"></h1> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment