Category Archives: Javascript
3 routers libraries tested.
Today i will talk about 3 routers libraries that i have tested. Crossroad, Navigo and Router_JS. Router library is the fundamental point of your system if you want to build a client application in JavaScript that not use a big Framework like Angular or Ember. I know, who really do that ? :p. So for… Read More »
Tutorial Ember ( Version 1.13 ) ? Part 5
In the part 4 of this tutorial about the creation of a blog with Ember, we have started by build the blog administration. Today, we will see how to create a Ember component and when to use it. Component : Ember has recently change his model from a Template-View-Controller-Action paradigm to a Template-Component-Action paradigm. In… Read More »
Tutorial Ember ( Version 1.13 ) ? Part 4
We are made to the fourth part of this tutorial dedicated to creating a blog with Ember. We will see the creation of templates, components, and how to connect all models via the routes specified in the previous chapter. Quite a program. Let’s go! Let us go back to our famous Routes. In the previous… Read More »
Ember-cli 1.13.12 released !
Ember-cli 1.13.12 is released. The changeling is as follow : 1.13.12 The following changes are required if you are upgrading from the previous version: Users changes to tests/index.html file. All tests are now in a separate file, diff. default Ember.js version is now at 1.13.10 default Ember Data version is now at 1.13.15 Upgrade your project?s ember-cli version – docs ember… Read More »
Modernizr 3 released !
Modernizr, the awesome Javascript library that lets you detect support for Javascript functions or CSS and to propose a polyfill or a graceful degradation has just released in version 3. The Modernizr’s team has completely rewrote the library and added about hundred detections. You can find the full list here. See you soon.
Optimize your JavaScript code with Performance.now ()
When you want to test the time taken by a function to run in JavaScript, you have the perfect tool for this: Performance.now (). Unlike Date.now() function calculated in relation to the system time, Performance.now() is incremented in a constant manner. Let’s take an example : These two functions perform the same treatment, incrementing a… Read More »
Tutorial Ember ( Version 1.13 ) ? Part 3
Welcome into this third part of this tutorial devoted to the creation of a blog with Ember.js. In this part we will see how to set up our routing system. With Ember, controllers are reduced to their simplest expression. These are only used to manage the state of your template’s elements. All the mechanical happen… Read More »
Tutorial Ember ( Version 1.13 ) – Part 2
In the previous articles of this tutorial, we have seen how to install et configure an Ember project with Ember-cli and the Material Design Lite Css Framework. We will now see how to build our blog project by starting with the model of the application. To simplify, we will use adapter that use local Storage… Read More »
Ember 2.0 is available!
Today Ember.js team just make available the final version 2.0 of Ember, the JavaScript framework to quickly achieving rich applications following the MV* pattern (Model-View-Anything). This version is the result of 5 beta, a huge overhaul and the addition of numerous feature. Among the latter we can mention: Synchronization between versions of Ember, Ember and… Read More »