JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.angularjs.org/1.0.0rc10/angular-1.0.0rc10.js"></script>
<div ng-controller="MyCtrl">
  <input type="text" ng-model="demo">
  <h1>{{ demo }}</h1>
</div>

CoffeeScript

app = angular.module 'myapp', []
app.controller "MyCtrl", ($scope) ->
  $scope.demo = "It is working, just need to manually bootstrap the app"
angular.bootstrap document, ["myapp"]