- jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
- Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
- AngularJS - Conventions based MVC framework for HTML5 apps.
- Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
- lawnchair - Key/value store adapter for indexdb, localStorage
$(elementWithTransition).on("transitionend webkitTransitionEnd oTransitionEnd otransitionend", function (){ | |
console.log('End! ;)') | |
}); |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Hey ya!</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<p> |
/** | |
* App Services Module | |
*/ | |
angular | |
.module('app.services', []) | |
.factory('$global', [function () { | |
this.settings = { | |
fullScreen: false, | |
fooProperty: true |
- 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
- Compass - Open source CSS Authoring Framework.
- Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
- Font Awesome - The iconic font designed for Bootstrap.
- Zurb Foundation - Framework for writing responsive web sites.
- SASS - CSS extension language which allows variables, mixins and rules nesting.
- Skeleton - Boilerplate for responsive, mobile-friendly development.
<main> | |
<section class="container"> | |
<footer class="footer"></footer> | |
</section> | |
</main> |
.directive('phoneBrazil', [function(){ | |
return { | |
restrict: 'A', | |
require: 'ngModel', | |
transclude: true, | |
link: function($scope, iElm, iAttrs, ngModel) { | |
if(!ngModel) return; | |
ngModel.$formatters.unshift(formatter); |
{ | |
"atomic_save": false, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"font_options": "subpixel_antialias", | |
"font_size": 9, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ |
Throughout the past years we've witnessed the Javascript Community grow and thrive. It's noticeable that not only the ecosystem has become bigger and more reliable but also the language itself is moving towards a more mature stage in comparison to eight years ago for example. In this article I will introduce you to some new useful features coming to Javascript.
Although these features are still in their experimental stage, we at Delivery Hero Logistics like to try out new things through experimenting carefully with features currently not found in our apps. In fact, you can use them today via Babel. However, be careful when choosing this option. There’s no guarantee that the proposal will remain as-is. It might dramatically change, and therefore you will have to refactor some code (or not).
( The idea behind this post is to provide some examples of real problems we've been facing throughout the years and to show how we can solve them today.)
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |