JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app ng-controller="TestController">
{{video_list}}
</div>
JavaScript
function TestController ($scope, $http) {
$http.get('http://gdata.youtube.com/feeds/api/videos/-/chocolate?alt=json&orderby=published').then(function (response) {
$scope.video_list = response.data;
});
}