npm для AngularJS

http://ngmodules.org/modules

Freebase: делаем запросы к Google Knowledge Graph

http://habrahabr.ru/post/177217/ Вот ссылка на документацию — https://developers.google.com/freebase/v1/getting-started, вот редактор для выполнения запросов — http://www.freebase.com/query

AngularJS: добавить заголовки ко всем запросам к серверу

angular.module(«YourAppModule», []).config([«$httpProvider», function($httpProvider) { $httpProvider.defaults.headers.common[‘custom’] = ‘custom_val’; $httpProvider.defaults.headers.put[‘Content-Type’] = ‘application/x-www-form-urlencoded’; $httpProvider.defaults.headers.post[‘Content-Type’] = ‘application/x-www-form-urlencoded’; }]);

Grunt-таск для избавления от лишних стилей в css

https://github.com/addyosmani/grunt-uncss Конфиг примерно такой: uncss: { dist: { files: { ‘dist/css/tidy.css’: [‘app/index.html’,’app/about.html’] } }, options: { compress:true } } processhtml: { dist: { files: { ‘dist/index.html’: [‘app/index.html’], ‘dist/about.html’: [‘app/about.html’] } } }

CSS: обрезание текста с многоточием

p { white-space: nowrap; width: 100%; overflow: hidden; /* «overflow» value must be different from «visible» */ text-overflow: ellipsis; } Не знал, позор https://developer.mozilla.org/en-US/docs/Web/CSS/text-overflow

Объяснение работы AngularJS путём создания своего AngularJS

Начало серии статей. http://teropa.info/blog/2013/11/03/make-your-own-angular-part-1-scopes-and-digest.html Уровень подготовки читателя — средний. Объём текста — большой. Перевод — http://habrahabr.ru/post/201832/ (не читал).

AngularJS 1.2.0 вышел

Да, то чего так долго ждали, о чём так долго говорили большевики, свершилось! http://blog.angularjs.org/2013/11/angularjs-120-timely-delivery.html Animations and Transitions — самое главное, чего ждали Better error messages (including error minification) Strict Contextual Escaping Track By function to prevent duplicates in ng-repeat Controller As syntax to access controller instances in templates Promise A+ Compliance (http://promises-aplus.github.io/promises-spec/) Separation of ngRoute …

Read more

Огромное количество полезных ссылок для фронт-енд разработчика

https://github.com/dypsilon/frontend-dev-bookmarks

Motio — библиотека для анимации фонового изображения

http://darsa.in/motio/

Touche.js — jquery plugin для подмены click на touch

Библиотека понимает, когда устройство поддерживает touch-события, и все обработчики, навешенные через on(‘click’, …), навешивает на событие touchend. http://benhowdle.im/touche/