Upgrade to Pro — share decks privately, control downloads, hide ads and more …

#nodejs

canoas
April 25, 2015

 #nodejs

#GlobalAzure Lisboa session on nodejs for .net developers

canoas

April 25, 2015
Tweet

More Decks by canoas

Other Decks in Programming

Transcript

  1. JS is the x86 of the web - Brendan Eich

    (inventor of JavaScript)
  2. We had always thought that Java's JVM would be the

    VM of the web, but it turns out that it's JavaScript. - Dougas Crockford (inventor or JSON)
  3. core libraries: jQuery, Prototype, Dojo, Underscore.js, ... module systems: Require.js,

    Browserify, … build tools: Grunt, Gulp,… app frameworks and templating: Angular.js, Backbone.js, Mustache.js, Ext JS, Kendo UI, Polymer, … testing: Mocha, QUnit, Jasmine component suites: jQuery UI, ExtJS, YUI, Bootstrap, wijmo, Kendo UI, IgniteUI, PrimeUI…
  4. |

  5. • var 'azure' • var • // Create Blob from

    Text • var 'the text of my blob' 'mycontainer' 'myblob' • function • // Blob created • // Get Blob Text 'mycontainer' 'myblob' • function • // Blob text retrieved • // Delete Blob 'mycontainer' 'myblob' • function • // Container deleted
  6. • var 'azure' • var • // Insert Entity •

    var new 'part1' 'mytable' • function • // Entity saved • // Query Entity 'mytable' • function • // Do something • // Delete Entity 'mytable' • function • // Entity deleted
  7. • var 'azure' • var • // Enqueue a Message

    'myqueue', 'my message text' • function • // Do something • // Get Messages 'myqueue' // Do Something