All Projects → mgechev → Angular Immutable

mgechev / Angular Immutable

Simple directive, which allows binding to Immutable.js collections.

Programming Languages

javascript
184084 projects - #8 most used programming language

Angular Immutable

Angular Immutable is a simple directive, which allows binding of Immutable.js collections.

Demo

var sampleApp = angular.module('sampleApp', ['immutable']);

function SampleCtrl($scope) {
  $scope.data = Immutable.List([1, 2, 3]);
}

sampleApp.controller('SampleCtrl', SampleCtrl);
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title></title>
</head>
<body ng-app="sampleApp" ng-controller="SampleCtrl">
<ul>
  <li immutable="data" ng-repeat="item in data track by $index" ng-bind="item"></li>
</ul>
<script src="/javascripts.js"></script>
</body>
</html>

Result

  • 1
  • 2
  • 3

You can find additional immutable-js tools for Angular here.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].