Permalink

63

A Few New Things Coming To JavaScript

Read Later submit to reddit

I believe the day-to-day practice of writing JavaScript is going to change dramatically for the better when ECMAScript.next arrives. The coming year is going to be an exciting time for developers as features proposed or finalised for the next versions … Continue reading

Permalink

2

Writing Fast, Memory-Efficient JavaScript

Read Later submit to reddit

JavaScript engines such as Google’s V8 (Chrome, Node) are specifically designed for the fast execution of large JavaScript applications. As you develop, if you care about memory usage and performance, you should be aware of some of what’s going on … Continue reading

Permalink

2

Journey Through The JavaScript MVC Jungle

Read Later submit to reddit

When writing a web application from scratch, it’s easy to feel like we can get by simply by relying on a DOM manipulation library (like jQuery) and a handful of utility plugins. The problem with this is that it doesn’t … Continue reading

Permalink

33

Digesting JavaScript MVC – Pattern Abuse Or Evolution?

Read Later submit to reddit

In my talk from London Ajax, we'll explore the current state of MVC in the JavaScript community, how Smalltalk-80's MVC differed and whether modern frameworks abuse (or evolve) the MVC pattern. We'll also look at a framework that tries to … Continue reading

Permalink

63

JavaScript Style Guides And Beautifiers

Read Later submit to reddit

Today we're going to explore JavaScript style guides, specifically: their importance, style guides worth reviewing and tools that can assist in automated code beautification or style enforcement. What exactly is a style guide? Before we begin, let us remind ourselves … Continue reading