SlideShare a Scribd company logo
Designing complex applications
 using HTML5 and KnockoutJS
         Fabio Franzini
         @franzinifabio
Thanks to the sponsors
About Me
   Senior Consultant and Software Engineer
   MCT Trainer, MCPD Web Applications, MCTS SharePoint 2010/2007
   Official Ignite Trainer for SharePoint 2013 & 2010 in Italy
   Web Stack Lover
   Over 8 years experience in IT as a software engineer

Blog: www.fabiofranzini.com
Email: fabio@fabiofranzini.com
Agenda
•   Introduction
•   HTML5
•   JavaScript and Client Side Frameworks
•   Server Side Tools
•   Multiplatform
•   Demo
Introduction
What is the keys to create complex applications
in javascript without becoming crazy?
• Write clean code!!
• Modularization and Reuse of code!!
• Use frameworks or tools that simplify the
  work!!
• Write the code as simple as possible!!
HTML5 and JavaScript allow you to do this?
               YES!! 
Why HTML5?
• Cross Browser
• Cross Platform
• W3C Standards
• All modern browsers and mobile devices
  supports HTML5
• Rich set of controls and APIs
• What else? 
JavaScript is…
• From Wikipedia:
  – A prototype-based scripting language that
    is dynamic, weakly typed and has first-class
    functions.
  – A multi-paradigm language, supporting object-
    oriented, imperative, and functional programming
    styles.


• In short, a big mess for most developers :)
…Constructor and Prototype
Keep in mind that Javascript is a class-less programming
language, but these can be simulated usign functions.

function Car ( model, color, year ){
    this.model = model;
    this.color = 'silver';
    this.year = '2012';
    this.getInfo = function(){
      return this.model + ' ' + this.year;
    }
  }

Car.prototype.toString = function() {
     return this.model + “ did “ + this.miles + “ miles”;
};

var civic = new Car( "Honda Civic" , "blue", 20000 );
Module Pattern
• Modularize your code!
• Group several related elements such as classes,
  singletons, methods, globally used, into a simple object.
• It fakes classes in Javascript.

• Pros
   – Encapsulation, it gives us an API (public and private attributes
     or methods)
   – Avoid names conflicting with other function
   – Easier debugging (public functions are named)
• Cons:
   – Difficult to refactor.
Module Pattern Example
 var testModule = ( function() {
      var counter = 0;
      var privateMethod = function() {
         // do something….
      }
      return {
         incrementCounter: function() { return counter++; },
         resetCounter: function() { counter = 0; }
      };
})();
Revealing Module Pattern
Coined by by Christian Heilmann (Mozilla Foundation)
• Pros
   – Sintax more consistent and easy to read
   – Easier to refactor

 var myRevealingModule = ( function() {
        var name = 'John Smith';
        function updatePerson() {
                  name = 'John Smith Updated';
        }
        function setPerson (value) {
                  name = value;
        }
        return { set: setPerson };
 }());
RequireJs for implement Module
                  Pattern
• RequireJs is a JavaScript file and module loader.
• Using a modular script loader like RequireJS will improve the
  speed and quality of your code!
[myPage.html]
<script data-main="scripts/main" src="scripts/require-jquery.js"></script>
…..
[main.js]
require(["jquery", "jquery.alpha", "jquery.beta"], function($) {
          //the jquery.alpha.js and jquery.beta.js plugins have been loaded.
          $(function() {
                     $('body').alpha().beta();
          });
});
Another Pattern
• MV* Pattern
  – The MV* Pattern allows to separate the functionalities and introduce
    greater flexibility to customize the presentation of items
  – Provides a standard model interface to allow a wide range of data
    sources to be used with existing item views
  – Different implementation: MVC, MVP, MVVM
• Observer (Pub/Sub) Pattern
  – It is a design pattern which allows an object (known as a subscriber) to
    watch another object (the publisher)
  – Loose coupling, ability to break down our applications into smaller,
    general manageability
KnockoutJs
• Model: It uses the Observable property that can
  notify subscribers about changes and
  automatically detect dependencies
• View: A KnockoutJs View is simply a HTML
  document with declarative bindings to link it to
  the ViewModel
• ViewModel: The ViewModel can be considered a
  specialized Controller that acts as a data
  converter. It changes Model information into View
  information, passing commands from the View to
  the Model.
KnockoutJs ViewModel
function AppViewModel() {
  this.firstName = ko.observable("Bert");
  this.lastName = ko.observable("Bertington");

    this.fullName = ko.computed(function() {
       return this.firstName() + " " + this.lastName();
    }, this);

    this.capitalizeLastName = function() {
       var currentVal = this.lastName();
       this.lastName(currentVal.toUpperCase());
    };
}

// Activates knockout.js
ko.applyBindings(new AppViewModel());
KnockoutJs View
<p>First name: <input data-bind="value: firstName" /></p>

<p>Last name: <input data-bind="value: lastName" /></p>

<p>Full name: <strong data-bind="text: fullName"></strong></p>

<button data-bind="click: capitalizeLastName">Go caps</button>
SammyJS
Sammy.js is a tiny JavaScript framework developed to ease the
pain and provide a basic structure for developing JavaScript
applications.
// define a new Sammy.Application bound to the #main element selector
Sammy('#main', function() {
          // define a 'get' route that will be triggered at '#/path'
          this.get('#/path', function() {
                     // this context is a Sammy.EventContext
                     // this.$element() is equal to $('#main')
                     this.$element().html('A new route!');
          });
}).run();
DEMO
List of other Powerfull JavaScript FX
• AmplifyJs
• UnderscoreJs
• LinqJs
AmplifyJs
Is a set of components designed to solve common web application problems
with a simplistic API like
      – amplify.request provides a clean and elegant request abstraction for
         all types of data, even allowing for transformation prior to
         consumption.
      – amplify.publish/subscribe provides a clean, performant API for
         component to component communication.
      – amplify.store takes the confusion out of HTML5 localStorage. It doesn't
         get simpler than using amplify.store(key, data)! It even works
         flawlessly on mobile devices.
AmplifyJs – request
amplify.request.define( "ajaxRESTFulExample", "ajax", {
   url: "/myRestFulApi/{type}/{id}",
   type: "GET"
})
……
// later in code
amplify.request( "ajaxRESTFulExample",
   {
      type: "foo",
      id: "bar"
   },
   function( data ) {
      // /myRESTFulApi/foo/bar was the URL used
      data.foo; // bar
   }
);
AmplifyJs – pub/sub
amplify.subscribe( "dataexample", function( data ) {
    alert( data.foo ); // bar
});

……

// later in code
amplify.publish( "dataexample", { foo: "bar" } );
AmplifyJs - store
Support for the following storage types are built into amplify.store and are
detected in the order listed


           LocalStorage      SessionStorage   GlobalStorage   UserData


               IE 8+             IE 8+
            Firefox 3.5+       Firefox 2+
             Safari 4+          Safari 4+
             Chrome             Chrome          Firefox 2+     IE 5 - 7
            Opera 10.5+       Opera 10.5+
             iPhone 2+         iPhone 2+
            Android 2+         Android 2+
AmplifyJs – store
//Store using .store
amplify.store( "storeExample1", { foo: "bar" } );
amplify.store( "storeExample2", "baz" );
...
// retrieve the data later via the key
var myStoredValue = amplify.store( "storeExample1" ),
    myStoredValue2 = amplify.store( "storeExample2" ),
    myStoredValues = amplify.store();

//Store data explicitly with session storage
amplify.store.sessionStorage( "explicitExample", { foo2: "baz" } );
…
// retrieve the data later via the key
var myStoredValue2 = amplify.store.sessionStorage( "explicitExample" );
myStoredValue2.foo2; // baz
UnderscoreJs
Underscore is a utility library that provides a lots of functions
without extending any of the built-in JavaScript objects


  UnderscoreJs Functions
  Collection   Arrays      Functions   Objects    Utility     Chaining
  •Each        •First      •Bind       •Keys      •Random     •Chain
  •Map         •Initial    •BindAll    •Values    •uniqueId   •Value
  •Reduce      •Union      •Wrap       •Extend    •Escape
  •Find        •Etc…       •Etc…       •isEqual   •Etc..
  •Where                               •isEmpty
  •Any                                 •Etc…
  •Etc…
linq.js - LINQ for JavaScript
•   implement all .NET 4.0 linq to object methods and extra methods
•   complete lazy evaluation
•   full IntelliSense support for VisualStudio
•   two versions: linq.js and jquery.linq.js (jQuery plugin)
var jsonArray = [
   { "user": { "id": 100, "screen_name": "d_linq" }, "text": "to objects" },
   { "user": { "id": 130, "screen_name": "c_bill" }, "text": "g" },
   { "user": { "id": 155, "screen_name": "b_mskk" }, "text": "kabushiki kaisha" },
   { "user": { "id": 301, "screen_name": "a_xbox" }, "text": "halo reach" }
];
var queryResult = Enumerable.From(jsonArray)
   .Where(function (x) { return x.user.id < 200 })
   .OrderBy(function (x) { return x.user.screen_name })
   .Select(function (x) { return x.user.screen_name + ':' + x.text })
   .ToArray();
SERVER SIDE TOOLS
ScriptSharp
Script# is a free tool that generates JavaScript by
compiling C# source code.
• The goal is to enable you to leverage the
  productivity of C#, the Visual Studio IDE, and .NET
  tools and apply them to your HTML5
  development.
• The Script# compiler is a development/build-time
  tool that takes a pragmatic approach to
  generating script for use in real-world script-
  based applications, without introducing any
  unnecessary layers of abstraction.
TypeScript
TypeScript is a typed superset of JavaScript that
compiles to plain JavaScript.
• TypeScript starts from the syntax and semantics
  that millions of JavaScript developers know today.
• You can use existing JavaScript code, incorporate
  popular JavaScript libraries, and be called from
  other JavaScript code.
• Compiles to clean, simple JavaScript code which
  runs on any browser, in Node.js, or in any other
  ES3-compatible environment.
TypeScript – Class Example
TypeScript                                JavaScript
class Greeter {                           var Greeter = (function () {
   greeting: string;                          function Greeter(message) {
   constructor (message: string) {               this.greeting = message;
             this.greeting = message;         }
   }                                          Greeter.prototype.greet =
   greet() {                                  function () {
      return "Hello, " + this.greeting;          return "Hello, " + this.greeting;
   }                                          };
}                                            return Greeter;
                                          })();
var greeter = new Greeter("world");       var greeter = new Greeter("world");
alert(greeter.greet());                   alert(greeter.greet());
How to generate apps from HTML5 and JavaScript?

MULTIPLATFORM
PhoneGap / Cordova
Is a platform for building native mobile
applications using HTML, CSS and JavaScript



Supported Platforms
and Features
PhoneGap / Cordova
• Pros
   – The Power of HTML5
   – Build native App
   – Interact with Device API’s
• Conts
   – Performance of WebBrowser Control on target device…
DEMO
Please rate this session
Scan the code, go online, rate this session

More Related Content

PPTX
Codemotion 2013 - Designing complex applications using html5 and knockoutjs
PDF
tTecniche di sviluppo mobile per share point 2013 e office 365
PDF
Come riprogettare le attuali farm solution di share point con il nuovo modell...
PDF
Sviluppare app per office
PPTX
Office 2013 loves web developers slide
PDF
The Magic Revealed: Four Real-World Examples of Using the Client Object Model...
PDF
SPCA2013 - Building Windows Client Applications for SharePoint 2013
PPT
Ruby on Rails: Building Web Applications Is Fun Again!
Codemotion 2013 - Designing complex applications using html5 and knockoutjs
tTecniche di sviluppo mobile per share point 2013 e office 365
Come riprogettare le attuali farm solution di share point con il nuovo modell...
Sviluppare app per office
Office 2013 loves web developers slide
The Magic Revealed: Four Real-World Examples of Using the Client Object Model...
SPCA2013 - Building Windows Client Applications for SharePoint 2013
Ruby on Rails: Building Web Applications Is Fun Again!

What's hot (20)

PDF
JavaScript and jQuery for SharePoint Developers
PPTX
STUG-Client Object Model SharePoint 2010
PDF
[2015/2016] Backbone JS
PPTX
SPTechCon 2014 How to develop and debug client side code in SharePoint
PPTX
Transform SharePoint default list forms with HTML, CSS and JavaScript
PPTX
Chris O'Brien - Customizing the SharePoint/Office 365 UI with JavaScript (ESP...
PPTX
Chris O'Brien - Modern SharePoint development: techniques for moving code off...
PDF
[2015/2016] JavaScript
PPTX
Chris O'Brien - Comparing SharePoint add-ins (apps) with Office 365 apps
PPTX
CSOM (Client Side Object Model). Explained @ SharePoint Saturday Houston
PPTX
Integrating SharePoint 2010 and Visual Studio Lightswitch
PPTX
Chris O'Brien - Modern SharePoint sites and the SharePoint Framework - reference
PDF
HTML5: the new frontier of the web
PPTX
SPTechCon - Share point and jquery essentials
PPTX
Chris OBrien - Weaving Enterprise Solutions into Office Products
PPTX
2/15/2012 - Wrapping Your Head Around the SharePoint Beast
PPTX
Bringing HTML5 alive in SharePoint
PPTX
Getting Started with SharePoint Development
PPTX
Industrial training seminar ppt on asp.net
PPTX
SharePoint Saturday St. Louis - SharePoint & jQuery
JavaScript and jQuery for SharePoint Developers
STUG-Client Object Model SharePoint 2010
[2015/2016] Backbone JS
SPTechCon 2014 How to develop and debug client side code in SharePoint
Transform SharePoint default list forms with HTML, CSS and JavaScript
Chris O'Brien - Customizing the SharePoint/Office 365 UI with JavaScript (ESP...
Chris O'Brien - Modern SharePoint development: techniques for moving code off...
[2015/2016] JavaScript
Chris O'Brien - Comparing SharePoint add-ins (apps) with Office 365 apps
CSOM (Client Side Object Model). Explained @ SharePoint Saturday Houston
Integrating SharePoint 2010 and Visual Studio Lightswitch
Chris O'Brien - Modern SharePoint sites and the SharePoint Framework - reference
HTML5: the new frontier of the web
SPTechCon - Share point and jquery essentials
Chris OBrien - Weaving Enterprise Solutions into Office Products
2/15/2012 - Wrapping Your Head Around the SharePoint Beast
Bringing HTML5 alive in SharePoint
Getting Started with SharePoint Development
Industrial training seminar ppt on asp.net
SharePoint Saturday St. Louis - SharePoint & jQuery
Ad

Similar to WebNet Conference 2012 - Designing complex applications using html5 and knockoutjs (20)

PPTX
Javascript first-class citizenery
PDF
SproutCore and the Future of Web Apps
PPTX
e-suap - client technologies- english version
PPTX
JS Essence
PDF
From Backbone to Ember and Back(bone) Again
PDF
09 - express nodes on the right angle - vitaliy basyuk - it event 2013 (5)
PDF
GDG Addis - An Introduction to Django and App Engine
PDF
Session on Selenium Powertools by Unmesh Gundecha
PDF
Wt unit 2 ppts client side technology
PDF
Wt unit 2 ppts client sied technology
PPT
Building Single Page Application (SPA) with Symfony2 and AngularJS
PPT
Smoothing Your Java with DSLs
PPT
Symfony2 and AngularJS
PDF
HTML5 for the Silverlight Guy
PPT
Understanding Framework Architecture using Eclipse
PDF
using Mithril.js + postgREST to build and consume API's
PDF
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
KEY
[Coscup 2012] JavascriptMVC
PPTX
Writing HTML5 Web Apps using Backbone.js and GAE
ODP
Knolx session
Javascript first-class citizenery
SproutCore and the Future of Web Apps
e-suap - client technologies- english version
JS Essence
From Backbone to Ember and Back(bone) Again
09 - express nodes on the right angle - vitaliy basyuk - it event 2013 (5)
GDG Addis - An Introduction to Django and App Engine
Session on Selenium Powertools by Unmesh Gundecha
Wt unit 2 ppts client side technology
Wt unit 2 ppts client sied technology
Building Single Page Application (SPA) with Symfony2 and AngularJS
Smoothing Your Java with DSLs
Symfony2 and AngularJS
HTML5 for the Silverlight Guy
Understanding Framework Architecture using Eclipse
using Mithril.js + postgREST to build and consume API's
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
[Coscup 2012] JavascriptMVC
Writing HTML5 Web Apps using Backbone.js and GAE
Knolx session
Ad

More from Fabio Franzini (7)

PDF
Use the PnP SharePoint Starter Kit to create your intranet in a box
PDF
All about Office UI Fabric
PDF
All about SPFx
PPTX
Introduction to SharePoint Framework (SPFx)
PPTX
Single page applications & SharePoint
PPTX
Whymca - Sviluppare applicazioni mobile native in html e javascript
PPTX
Sviluppare applicazioni mobile native in html e java script
Use the PnP SharePoint Starter Kit to create your intranet in a box
All about Office UI Fabric
All about SPFx
Introduction to SharePoint Framework (SPFx)
Single page applications & SharePoint
Whymca - Sviluppare applicazioni mobile native in html e javascript
Sviluppare applicazioni mobile native in html e java script

WebNet Conference 2012 - Designing complex applications using html5 and knockoutjs

  • 1. Designing complex applications using HTML5 and KnockoutJS Fabio Franzini @franzinifabio
  • 2. Thanks to the sponsors
  • 3. About Me  Senior Consultant and Software Engineer  MCT Trainer, MCPD Web Applications, MCTS SharePoint 2010/2007  Official Ignite Trainer for SharePoint 2013 & 2010 in Italy  Web Stack Lover  Over 8 years experience in IT as a software engineer Blog: www.fabiofranzini.com Email: [email protected]
  • 4. Agenda • Introduction • HTML5 • JavaScript and Client Side Frameworks • Server Side Tools • Multiplatform • Demo
  • 5. Introduction What is the keys to create complex applications in javascript without becoming crazy? • Write clean code!! • Modularization and Reuse of code!! • Use frameworks or tools that simplify the work!! • Write the code as simple as possible!!
  • 6. HTML5 and JavaScript allow you to do this? YES!! 
  • 7. Why HTML5? • Cross Browser • Cross Platform • W3C Standards • All modern browsers and mobile devices supports HTML5 • Rich set of controls and APIs • What else? 
  • 8. JavaScript is… • From Wikipedia: – A prototype-based scripting language that is dynamic, weakly typed and has first-class functions. – A multi-paradigm language, supporting object- oriented, imperative, and functional programming styles. • In short, a big mess for most developers :)
  • 9. …Constructor and Prototype Keep in mind that Javascript is a class-less programming language, but these can be simulated usign functions. function Car ( model, color, year ){ this.model = model; this.color = 'silver'; this.year = '2012'; this.getInfo = function(){ return this.model + ' ' + this.year; } } Car.prototype.toString = function() { return this.model + “ did “ + this.miles + “ miles”; }; var civic = new Car( "Honda Civic" , "blue", 20000 );
  • 10. Module Pattern • Modularize your code! • Group several related elements such as classes, singletons, methods, globally used, into a simple object. • It fakes classes in Javascript. • Pros – Encapsulation, it gives us an API (public and private attributes or methods) – Avoid names conflicting with other function – Easier debugging (public functions are named) • Cons: – Difficult to refactor.
  • 11. Module Pattern Example var testModule = ( function() { var counter = 0; var privateMethod = function() { // do something…. } return { incrementCounter: function() { return counter++; }, resetCounter: function() { counter = 0; } }; })();
  • 12. Revealing Module Pattern Coined by by Christian Heilmann (Mozilla Foundation) • Pros – Sintax more consistent and easy to read – Easier to refactor var myRevealingModule = ( function() { var name = 'John Smith'; function updatePerson() { name = 'John Smith Updated'; } function setPerson (value) { name = value; } return { set: setPerson }; }());
  • 13. RequireJs for implement Module Pattern • RequireJs is a JavaScript file and module loader. • Using a modular script loader like RequireJS will improve the speed and quality of your code! [myPage.html] <script data-main="scripts/main" src="scripts/require-jquery.js"></script> ….. [main.js] require(["jquery", "jquery.alpha", "jquery.beta"], function($) { //the jquery.alpha.js and jquery.beta.js plugins have been loaded. $(function() { $('body').alpha().beta(); }); });
  • 14. Another Pattern • MV* Pattern – The MV* Pattern allows to separate the functionalities and introduce greater flexibility to customize the presentation of items – Provides a standard model interface to allow a wide range of data sources to be used with existing item views – Different implementation: MVC, MVP, MVVM • Observer (Pub/Sub) Pattern – It is a design pattern which allows an object (known as a subscriber) to watch another object (the publisher) – Loose coupling, ability to break down our applications into smaller, general manageability
  • 15. KnockoutJs • Model: It uses the Observable property that can notify subscribers about changes and automatically detect dependencies • View: A KnockoutJs View is simply a HTML document with declarative bindings to link it to the ViewModel • ViewModel: The ViewModel can be considered a specialized Controller that acts as a data converter. It changes Model information into View information, passing commands from the View to the Model.
  • 16. KnockoutJs ViewModel function AppViewModel() { this.firstName = ko.observable("Bert"); this.lastName = ko.observable("Bertington"); this.fullName = ko.computed(function() { return this.firstName() + " " + this.lastName(); }, this); this.capitalizeLastName = function() { var currentVal = this.lastName(); this.lastName(currentVal.toUpperCase()); }; } // Activates knockout.js ko.applyBindings(new AppViewModel());
  • 17. KnockoutJs View <p>First name: <input data-bind="value: firstName" /></p> <p>Last name: <input data-bind="value: lastName" /></p> <p>Full name: <strong data-bind="text: fullName"></strong></p> <button data-bind="click: capitalizeLastName">Go caps</button>
  • 18. SammyJS Sammy.js is a tiny JavaScript framework developed to ease the pain and provide a basic structure for developing JavaScript applications. // define a new Sammy.Application bound to the #main element selector Sammy('#main', function() { // define a 'get' route that will be triggered at '#/path' this.get('#/path', function() { // this context is a Sammy.EventContext // this.$element() is equal to $('#main') this.$element().html('A new route!'); }); }).run();
  • 19. DEMO
  • 20. List of other Powerfull JavaScript FX • AmplifyJs • UnderscoreJs • LinqJs
  • 21. AmplifyJs Is a set of components designed to solve common web application problems with a simplistic API like – amplify.request provides a clean and elegant request abstraction for all types of data, even allowing for transformation prior to consumption. – amplify.publish/subscribe provides a clean, performant API for component to component communication. – amplify.store takes the confusion out of HTML5 localStorage. It doesn't get simpler than using amplify.store(key, data)! It even works flawlessly on mobile devices.
  • 22. AmplifyJs – request amplify.request.define( "ajaxRESTFulExample", "ajax", { url: "/myRestFulApi/{type}/{id}", type: "GET" }) …… // later in code amplify.request( "ajaxRESTFulExample", { type: "foo", id: "bar" }, function( data ) { // /myRESTFulApi/foo/bar was the URL used data.foo; // bar } );
  • 23. AmplifyJs – pub/sub amplify.subscribe( "dataexample", function( data ) { alert( data.foo ); // bar }); …… // later in code amplify.publish( "dataexample", { foo: "bar" } );
  • 24. AmplifyJs - store Support for the following storage types are built into amplify.store and are detected in the order listed LocalStorage SessionStorage GlobalStorage UserData IE 8+ IE 8+ Firefox 3.5+ Firefox 2+ Safari 4+ Safari 4+ Chrome Chrome Firefox 2+ IE 5 - 7 Opera 10.5+ Opera 10.5+ iPhone 2+ iPhone 2+ Android 2+ Android 2+
  • 25. AmplifyJs – store //Store using .store amplify.store( "storeExample1", { foo: "bar" } ); amplify.store( "storeExample2", "baz" ); ... // retrieve the data later via the key var myStoredValue = amplify.store( "storeExample1" ), myStoredValue2 = amplify.store( "storeExample2" ), myStoredValues = amplify.store(); //Store data explicitly with session storage amplify.store.sessionStorage( "explicitExample", { foo2: "baz" } ); … // retrieve the data later via the key var myStoredValue2 = amplify.store.sessionStorage( "explicitExample" ); myStoredValue2.foo2; // baz
  • 26. UnderscoreJs Underscore is a utility library that provides a lots of functions without extending any of the built-in JavaScript objects UnderscoreJs Functions Collection Arrays Functions Objects Utility Chaining •Each •First •Bind •Keys •Random •Chain •Map •Initial •BindAll •Values •uniqueId •Value •Reduce •Union •Wrap •Extend •Escape •Find •Etc… •Etc… •isEqual •Etc.. •Where •isEmpty •Any •Etc… •Etc…
  • 27. linq.js - LINQ for JavaScript • implement all .NET 4.0 linq to object methods and extra methods • complete lazy evaluation • full IntelliSense support for VisualStudio • two versions: linq.js and jquery.linq.js (jQuery plugin) var jsonArray = [ { "user": { "id": 100, "screen_name": "d_linq" }, "text": "to objects" }, { "user": { "id": 130, "screen_name": "c_bill" }, "text": "g" }, { "user": { "id": 155, "screen_name": "b_mskk" }, "text": "kabushiki kaisha" }, { "user": { "id": 301, "screen_name": "a_xbox" }, "text": "halo reach" } ]; var queryResult = Enumerable.From(jsonArray) .Where(function (x) { return x.user.id < 200 }) .OrderBy(function (x) { return x.user.screen_name }) .Select(function (x) { return x.user.screen_name + ':' + x.text }) .ToArray();
  • 29. ScriptSharp Script# is a free tool that generates JavaScript by compiling C# source code. • The goal is to enable you to leverage the productivity of C#, the Visual Studio IDE, and .NET tools and apply them to your HTML5 development. • The Script# compiler is a development/build-time tool that takes a pragmatic approach to generating script for use in real-world script- based applications, without introducing any unnecessary layers of abstraction.
  • 30. TypeScript TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. • TypeScript starts from the syntax and semantics that millions of JavaScript developers know today. • You can use existing JavaScript code, incorporate popular JavaScript libraries, and be called from other JavaScript code. • Compiles to clean, simple JavaScript code which runs on any browser, in Node.js, or in any other ES3-compatible environment.
  • 31. TypeScript – Class Example TypeScript JavaScript class Greeter { var Greeter = (function () { greeting: string; function Greeter(message) { constructor (message: string) { this.greeting = message; this.greeting = message; } } Greeter.prototype.greet = greet() { function () { return "Hello, " + this.greeting; return "Hello, " + this.greeting; } }; } return Greeter; })(); var greeter = new Greeter("world"); var greeter = new Greeter("world"); alert(greeter.greet()); alert(greeter.greet());
  • 32. How to generate apps from HTML5 and JavaScript? MULTIPLATFORM
  • 33. PhoneGap / Cordova Is a platform for building native mobile applications using HTML, CSS and JavaScript Supported Platforms and Features
  • 34. PhoneGap / Cordova • Pros – The Power of HTML5 – Build native App – Interact with Device API’s • Conts – Performance of WebBrowser Control on target device…
  • 35. DEMO
  • 36. Please rate this session Scan the code, go online, rate this session