Javascript – For modern client side applications



Javascript – For modern client side applications

0 1


can-i-haz-good-js

Slides for "Modern client side javascript" talk

On Github thebakeryio / can-i-haz-good-js

Javascript

For modern client side applications

Philip Nuzhnyy // @callmephilip // philip@thebakery.io

Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).
JavaScript, not to be confused with Java, was created in 10 days in May 1995 by Brendan Eich, then working at Netscape and now of Mozilla. (from http://www.w3.org/community/webed/wiki/A_Short_History_of_JavaScript)
http://www.adaptivepath.com/ideas/ajax-new-approach-web-applications
http://www.hanselman.com/blog/JavaScriptIsAssemblyLanguageForTheWebSematicMarkupIsDeadCleanVsMachinecodedHTML.aspx

Entry point (require.js)

index.html

							
								
						

main.js

							
require.config({
	baseUrl: 'js/lib',
	paths: {
		jquery: 'jquery-1.9.0'
	}
});

define(['jquery'], function ($) {
	//booyakacha!
});
							
						

Fight js

Have a coffee