JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app ng-controller="TestController">
    <ul>
        <li ng-repeat="entry in video_list.feed.entry">{{entry.title.$t}}</li>
    </ul>
</div>

JavaScript

function TestController ($scope, $http) {
    $http.jsonp('http://gdata.youtube.com/feeds/api/videos/-/chocolate?alt=json-in-script&orderby=published&callback=JSON_CALLBACK').then(function (response) {
          $scope.video_list = response.data;
    });
}