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 take long to get lost in a nested pile of jQuery callbacks and DOM elements without any real structure in place for our applications. In short, we’re stuck with spaghetti code. 

In my current post on Continue Reading →

Permalink

48

Improved Developer Tooling and Yeoman

Read Later submit to reddit

Did you guys enjoy Paul Irish’s talk at Google I/O?

In case you missed it, yesterday we announced Yeoman – a project we’ve been working on to greatly help improve developer workflow, spanning everything from a comprehensive build process to package management. If you’d like to read more about it’s features, check out Yeoman.io.

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 stick more closely to Smalltalk MVC and close up with a panel discussion.

Continue Reading →

Permalink

4

ECMAScript 6 Resources For The Curious JavaScripter

Read Later submit to reddit

I’ve recently spent a lot of time looking at EcmaScript 6 and thought it would be useful to put together a short page of resources to help anyone else interested in exploring the next version of JavaScript further.

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 exactly what a code style guide is:

A style guide or style manual is Continue Reading →