際際滷

際際滷Share a Scribd company logo
JavaScript
                            IN THE CLOUD




                                           Mostafa Eweda
                                      eSpace Technologies
                                          10 January, 2013
Saturday, February 2, 13
Program


                          Javascript, 1995 to 2013
                          Building Cloud9
                          Demo




Saturday, February 2, 13
Javascript

                          Livescript
                          Netscape 2.0
                          Not like Java
                          More like Scheme




Saturday, February 2, 13
JS had to "look like Java" only
                   less so, [it had to] be
                 Java's dumb kid brother.



Saturday, February 2, 13
XMLHttpRequest


Saturday, February 2, 13
Saturday, February 2, 13
Saturday, February 2, 13
DOM


                          Never meant to be scripted
                          Direct mapping of C structures
                          Incovenient API




Saturday, February 2, 13
Saturday, February 2, 13
Saturday, February 2, 13
Saturday, February 2, 13
Saturday, February 2, 13
Java vs. Javascript




     Lets confess:
     JavaScript is already the language of the Web
Saturday, February 2, 13
People started to care

                          VMs got faster
                              And embeddable!
                          EcmaScript 5
                          JSConf

                  So, JavaScript is a very simple, but often
                  misunderstood language.
Saturday, February 2, 13
Node.js is a NOT another web
          framework. I promise !
Saturday, February 2, 13
Googles V8 engine
                           as an executable!




Saturday, February 2, 13
LibUV

Saturday, February 2, 13
Asynchronous is cool!




Saturday, February 2, 13
I hate
                           asynchronous!




Saturday, February 2, 13
Normal C++ IO




Saturday, February 2, 13
LibUV C++ IO




Saturday, February 2, 13
Saturday, February 2, 13
Javascript                 LibUV




          Node.js is a platform for building fast,
          scalable network applications.
Saturday, February 2, 13
Javascript bindings to LibUV

                           Standard libraries in JS

                             JS executed in V8


Saturday, February 2, 13
LibUV
                           Not exclusive



Saturday, February 2, 13
Read File in Ruby
       file = File.new("readfile.rb", "r")
       while (line = file.gets)
         # Do something with line
       end
       file.close


                           Read File in Node
  fs.readFile('readfile.js', function (err, buffer){
    if (err) throw err;
    // File is read and we're done.
  });

Saturday, February 2, 13
browser.js


                             db.js


                            server.js

Saturday, February 2, 13
Normal C++ IO
     Node.js is fast by design.
     Never blocking on I/O means less
             threads.




Saturday, February 2, 13
Program

 Async.parallel([
   function loadData(next) {
      db.loadData(next);
   },
   function readFile(next) {
     fs.readFile(fName, next);
   ], function done(err, items) {
      if (err) throw err;
      // Do something with items
 });




                           https://github.com/caolan/async
Saturday, February 2, 13
Program
 var user;
 Async.series([
   function loadUser(next) {
      db.getUser(user_id, function(err, u){
          user = u;
          next(err);
      });
   },
   function findItems(next) {
     var sql = "SELECT * FROM store WHERE
 type=?";
      db.query(sql, user.type, next);
   ], function done(err, items) {
      if (err) throw err;
      // Do something with items
 });




Saturday, February 2, 13
Program
               Mix to do complex stuff like:




                           https://github.com/caolan/async
Saturday, February 2, 13
Program


                          Javascript, 1995 to 2013
                          Building Cloud9
                          Demo




Saturday, February 2, 13
Normal developers




Saturday, February 2, 13
JavaScript Developer




Saturday, February 2, 13
is to



           as              is to



Saturday, February 2, 13
You really need HELP



                                    Text




Saturday, February 2, 13
You really need HELP



                                    Text




Saturday, February 2, 13
You really need HELP



                                    Text

           undeclared variable




Saturday, February 2, 13
You really need HELP



                                      Text

           undeclared variable

                                  Iterating using undeclared variable
                                                                        Did you mean length?




Saturday, February 2, 13
You really need HELP



                                      Text

           undeclared variable

                                  Iterating using undeclared variable
                                                                        Did you mean length?




Saturday, February 2, 13
You really need HELP



                                                            Text

           undeclared variable

                                                        Iterating using undeclared variable
                                                                                                Did you mean length?
                                                                                              function created in loop
                            Warning: you are in an anonymous inner function with its own this pointer




Saturday, February 2, 13
Saturday, February 2, 13
Debugging




Saturday, February 2, 13
(Smart!) Code completion




Saturday, February 2, 13
Free Linux VM!
Saturday, February 2, 13
Real terminal
Saturday, February 2, 13
Collaboration




Saturday, February 2, 13
Create

                           Deploy
                                                  Run/Debug



                              Share            Test




Saturday, February 2, 13
Program


                          Javascript, 1995 to 2012
                          Building Cloud9
                          Demo




Saturday, February 2, 13
Node.js simple server

            var http = require('http');

      http.createServer(function (req, res) {
        res.writeHead(200, {'Content-Type': 'text/plain'});
        res.end('Hello world');
      }).listen(3000);




Saturday, February 2, 13
Node.js real web app
                            express / connect
          $ npm install -g express
    $     express --sessions --css stylus --ejs jade
    $     cd myapp
    $     npm install
    $     node app.js

    app.get('/hello.txt', function(req, res){
      res.send('Hello World');
    });
    app.listen(3000);
    console.log('Listening on port 3000');


    $ node app

                           http://expressjs.com/
Saturday, February 2, 13
Node.js real web app
                                    Socket.IO 100% JS
          Realtime apps made possible blurring the
          differences between browser transport mechanisms.

    $ npm install socket.io

                           Server                                    Client
   var io = require('socket.io');                    <script src=/slideshow/javascript-in-the-cloud/16306312/"/socket.io/socket.io.js"></script>
   // attached to the express app                    <script>
   // or runs standalone on port 80                    var socket = io.connect('http://localhost');
   io = io.listen(app || 80);
                                                       socket.on('message', function (msg) {
   io.sockets.on('connection', function (socket) {       console.log(msg);
     socket.on('message', function (msg) {               socket.send({ info: 'trash' });
       console.log(msg);                               });
     });                                             </script>
   });


                                      http://socket.io
Saturday, February 2, 13
Future (Architect)
           A simple yet powerful plugin system for
                  large-scale Node.js applications
                   Dependency Injection for JavaScript
                    Managing > ~100K LOC of JS
                    JS: Dynamically typed - Singly threaded



                                http://github.com/c9/architect
Saturday, February 2, 13
Wrap-Up

                Node.js is brilliant for modern web apps
                If you do realtime app that is meant to be scalable,
                      you should probably consider Node.js & Socket.io

                Scale your code base: http://github.com/c9/architect
                      for your application.

                Check out c9.io for a serious online IDE.

Saturday, February 2, 13
Text

                           http://c9.io


                                                Mostafa Eweda
                                      github.com/mostafaeweda
                                               @mostafaeweda

Saturday, February 2, 13

More Related Content

Similar to Javascript in the cloud (20)

Play 2 pip
Play 2 pipPlay 2 pip
Play 2 pip
Matteo Depalo
Testing Drupal with Ghosts and Gherkin
Testing Drupal  with Ghosts and GherkinTesting Drupal  with Ghosts and Gherkin
Testing Drupal with Ghosts and Gherkin
Phase2
Invokedynamic: Tales from the Trenches
Invokedynamic: Tales from the TrenchesInvokedynamic: Tales from the Trenches
Invokedynamic: Tales from the Trenches
Charles Nutter
Invokedynamic in 45 Minutes
Invokedynamic in 45 MinutesInvokedynamic in 45 Minutes
Invokedynamic in 45 Minutes
Charles Nutter
The WordPress Hacker's Guide to the \Galaxy() [@MidwestPHP]
The WordPress Hacker's Guide to the \Galaxy() [@MidwestPHP]The WordPress Hacker's Guide to the \Galaxy() [@MidwestPHP]
The WordPress Hacker's Guide to the \Galaxy() [@MidwestPHP]
Jason Rhodes
The WordPress Hacker's Guide to the \Galaxy() [@Baltimore PHP]
The WordPress Hacker's Guide to the \Galaxy() [@Baltimore PHP]The WordPress Hacker's Guide to the \Galaxy() [@Baltimore PHP]
The WordPress Hacker's Guide to the \Galaxy() [@Baltimore PHP]
Jason Rhodes
Wphackergalaxy
WphackergalaxyWphackergalaxy
Wphackergalaxy
Jason Rhodes
Puppet @ Nedap
Puppet @ NedapPuppet @ Nedap
Puppet @ Nedap
Puppet
GitHub Notable OSS Project
GitHub  Notable OSS ProjectGitHub  Notable OSS Project
GitHub Notable OSS Project
roumia
Designing Puppet: Roles/Profiles Pattern
Designing Puppet: Roles/Profiles PatternDesigning Puppet: Roles/Profiles Pattern
Designing Puppet: Roles/Profiles Pattern
Puppet
Welcome to the Symfony2 World - FOSDEM 2013
 Welcome to the Symfony2 World - FOSDEM 2013 Welcome to the Symfony2 World - FOSDEM 2013
Welcome to the Symfony2 World - FOSDEM 2013
Lukas Smith
RailsConf 2013: RubyMotion
RailsConf 2013: RubyMotionRailsConf 2013: RubyMotion
RailsConf 2013: RubyMotion
Brian Sam-Bodden
State of Puppet
State of PuppetState of Puppet
State of Puppet
Puppet
With your bare hands
With your bare handsWith your bare hands
With your bare hands
Marc B辰chinger
Game Changing Dependency Management
Game Changing Dependency ManagementGame Changing Dependency Management
Game Changing Dependency Management
Jeremy Kendall
Using Java from Ruby with JRuby IRB
Using Java from Ruby with JRuby IRBUsing Java from Ruby with JRuby IRB
Using Java from Ruby with JRuby IRB
Hiro Asari
Writing Reusable Web Components with jQuery and jQuery UI
Writing Reusable Web Components with jQuery and jQuery UIWriting Reusable Web Components with jQuery and jQuery UI
Writing Reusable Web Components with jQuery and jQuery UI
Ynon Perek
Bitter Java, Sweeten with JRuby
Bitter Java, Sweeten with JRubyBitter Java, Sweeten with JRuby
Bitter Java, Sweeten with JRuby
Brian Sam-Bodden
Ruby Programming Introduction
Ruby Programming IntroductionRuby Programming Introduction
Ruby Programming Introduction
Anthony Brown
MongoDB For C++ Developers
MongoDB For C++ DevelopersMongoDB For C++ Developers
MongoDB For C++ Developers
Ynon Perek
Testing Drupal with Ghosts and Gherkin
Testing Drupal  with Ghosts and GherkinTesting Drupal  with Ghosts and Gherkin
Testing Drupal with Ghosts and Gherkin
Phase2
Invokedynamic: Tales from the Trenches
Invokedynamic: Tales from the TrenchesInvokedynamic: Tales from the Trenches
Invokedynamic: Tales from the Trenches
Charles Nutter
Invokedynamic in 45 Minutes
Invokedynamic in 45 MinutesInvokedynamic in 45 Minutes
Invokedynamic in 45 Minutes
Charles Nutter
The WordPress Hacker's Guide to the \Galaxy() [@MidwestPHP]
The WordPress Hacker's Guide to the \Galaxy() [@MidwestPHP]The WordPress Hacker's Guide to the \Galaxy() [@MidwestPHP]
The WordPress Hacker's Guide to the \Galaxy() [@MidwestPHP]
Jason Rhodes
The WordPress Hacker's Guide to the \Galaxy() [@Baltimore PHP]
The WordPress Hacker's Guide to the \Galaxy() [@Baltimore PHP]The WordPress Hacker's Guide to the \Galaxy() [@Baltimore PHP]
The WordPress Hacker's Guide to the \Galaxy() [@Baltimore PHP]
Jason Rhodes
Puppet @ Nedap
Puppet @ NedapPuppet @ Nedap
Puppet @ Nedap
Puppet
GitHub Notable OSS Project
GitHub  Notable OSS ProjectGitHub  Notable OSS Project
GitHub Notable OSS Project
roumia
Designing Puppet: Roles/Profiles Pattern
Designing Puppet: Roles/Profiles PatternDesigning Puppet: Roles/Profiles Pattern
Designing Puppet: Roles/Profiles Pattern
Puppet
Welcome to the Symfony2 World - FOSDEM 2013
 Welcome to the Symfony2 World - FOSDEM 2013 Welcome to the Symfony2 World - FOSDEM 2013
Welcome to the Symfony2 World - FOSDEM 2013
Lukas Smith
RailsConf 2013: RubyMotion
RailsConf 2013: RubyMotionRailsConf 2013: RubyMotion
RailsConf 2013: RubyMotion
Brian Sam-Bodden
State of Puppet
State of PuppetState of Puppet
State of Puppet
Puppet
Game Changing Dependency Management
Game Changing Dependency ManagementGame Changing Dependency Management
Game Changing Dependency Management
Jeremy Kendall
Using Java from Ruby with JRuby IRB
Using Java from Ruby with JRuby IRBUsing Java from Ruby with JRuby IRB
Using Java from Ruby with JRuby IRB
Hiro Asari
Writing Reusable Web Components with jQuery and jQuery UI
Writing Reusable Web Components with jQuery and jQuery UIWriting Reusable Web Components with jQuery and jQuery UI
Writing Reusable Web Components with jQuery and jQuery UI
Ynon Perek
Bitter Java, Sweeten with JRuby
Bitter Java, Sweeten with JRubyBitter Java, Sweeten with JRuby
Bitter Java, Sweeten with JRuby
Brian Sam-Bodden
Ruby Programming Introduction
Ruby Programming IntroductionRuby Programming Introduction
Ruby Programming Introduction
Anthony Brown
MongoDB For C++ Developers
MongoDB For C++ DevelopersMongoDB For C++ Developers
MongoDB For C++ Developers
Ynon Perek

Recently uploaded (20)

Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-WorldAll-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
Safe Software
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
STARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to PonderSTARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to Ponder
anupriti
Solana Developer Hiring for Enterprises Key Considerations.pdf
Solana Developer Hiring for Enterprises Key Considerations.pdfSolana Developer Hiring for Enterprises Key Considerations.pdf
Solana Developer Hiring for Enterprises Key Considerations.pdf
Lisa ward
Packaging your App for AppExchange Managed Vs Unmanaged.pptx
Packaging your App for AppExchange  Managed Vs Unmanaged.pptxPackaging your App for AppExchange  Managed Vs Unmanaged.pptx
Packaging your App for AppExchange Managed Vs Unmanaged.pptx
mohayyudin7826
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
IBsolution GmbH
How to Consistently Make $5,000+ with DeepSmartX
How to Consistently Make $5,000+ with DeepSmartXHow to Consistently Make $5,000+ with DeepSmartX
How to Consistently Make $5,000+ with DeepSmartX
SOFTTECHHUB
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & TradeoffsAchieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
ScyllaDB
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMARSTRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
Sarathkumar Narsupalli
Innovative Web Design | Malachite Technologies
Innovative Web Design | Malachite TechnologiesInnovative Web Design | Malachite Technologies
Innovative Web Design | Malachite Technologies
malachitetechnologie1
How to manage technology risk and corporate growth
How to manage technology risk and corporate growthHow to manage technology risk and corporate growth
How to manage technology risk and corporate growth
Arlen Meyers, MD, MBA
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
voginip
Dev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPathDev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPath
UiPathCommunity
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No KubernetesJava on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
VictorSzoltysek
Testing Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptxTesting Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptx
Julia Undeutsch
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio WebUiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
DianaGray10
The Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative MetalsThe Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative Metals
anupriti
際際滷s from Perth MuleSoft Meetup March 2025
際際滷s from Perth MuleSoft Meetup March 2025際際滷s from Perth MuleSoft Meetup March 2025
際際滷s from Perth MuleSoft Meetup March 2025
Michael Price
Building High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdfBuilding High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdf
Rafael Burity
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-WorldAll-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
Safe Software
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
STARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to PonderSTARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to Ponder
anupriti
Solana Developer Hiring for Enterprises Key Considerations.pdf
Solana Developer Hiring for Enterprises Key Considerations.pdfSolana Developer Hiring for Enterprises Key Considerations.pdf
Solana Developer Hiring for Enterprises Key Considerations.pdf
Lisa ward
Packaging your App for AppExchange Managed Vs Unmanaged.pptx
Packaging your App for AppExchange  Managed Vs Unmanaged.pptxPackaging your App for AppExchange  Managed Vs Unmanaged.pptx
Packaging your App for AppExchange Managed Vs Unmanaged.pptx
mohayyudin7826
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
IBsolution GmbH
How to Consistently Make $5,000+ with DeepSmartX
How to Consistently Make $5,000+ with DeepSmartXHow to Consistently Make $5,000+ with DeepSmartX
How to Consistently Make $5,000+ with DeepSmartX
SOFTTECHHUB
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & TradeoffsAchieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
ScyllaDB
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMARSTRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
Sarathkumar Narsupalli
Innovative Web Design | Malachite Technologies
Innovative Web Design | Malachite TechnologiesInnovative Web Design | Malachite Technologies
Innovative Web Design | Malachite Technologies
malachitetechnologie1
How to manage technology risk and corporate growth
How to manage technology risk and corporate growthHow to manage technology risk and corporate growth
How to manage technology risk and corporate growth
Arlen Meyers, MD, MBA
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
voginip
Dev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPathDev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPath
UiPathCommunity
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No KubernetesJava on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
VictorSzoltysek
Testing Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptxTesting Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptx
Julia Undeutsch
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio WebUiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
UiPath NY AI Series: Session 4: UiPath AutoPilot for Developers using Studio Web
DianaGray10
The Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative MetalsThe Future of Materials: Transitioning from Silicon to Alternative Metals
The Future of Materials: Transitioning from Silicon to Alternative Metals
anupriti
際際滷s from Perth MuleSoft Meetup March 2025
際際滷s from Perth MuleSoft Meetup March 2025際際滷s from Perth MuleSoft Meetup March 2025
際際滷s from Perth MuleSoft Meetup March 2025
Michael Price
Building High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdfBuilding High-Impact Teams Beyond the Product Triad.pdf
Building High-Impact Teams Beyond the Product Triad.pdf
Rafael Burity

Javascript in the cloud

  • 1. JavaScript IN THE CLOUD Mostafa Eweda eSpace Technologies 10 January, 2013 Saturday, February 2, 13
  • 2. Program Javascript, 1995 to 2013 Building Cloud9 Demo Saturday, February 2, 13
  • 3. Javascript Livescript Netscape 2.0 Not like Java More like Scheme Saturday, February 2, 13
  • 4. JS had to "look like Java" only less so, [it had to] be Java's dumb kid brother. Saturday, February 2, 13
  • 8. DOM Never meant to be scripted Direct mapping of C structures Incovenient API Saturday, February 2, 13
  • 13. Java vs. Javascript Lets confess: JavaScript is already the language of the Web Saturday, February 2, 13
  • 14. People started to care VMs got faster And embeddable! EcmaScript 5 JSConf So, JavaScript is a very simple, but often misunderstood language. Saturday, February 2, 13
  • 15. Node.js is a NOT another web framework. I promise ! Saturday, February 2, 13
  • 16. Googles V8 engine as an executable! Saturday, February 2, 13
  • 19. I hate asynchronous! Saturday, February 2, 13
  • 20. Normal C++ IO Saturday, February 2, 13
  • 21. LibUV C++ IO Saturday, February 2, 13
  • 23. Javascript LibUV Node.js is a platform for building fast, scalable network applications. Saturday, February 2, 13
  • 24. Javascript bindings to LibUV Standard libraries in JS JS executed in V8 Saturday, February 2, 13
  • 25. LibUV Not exclusive Saturday, February 2, 13
  • 26. Read File in Ruby file = File.new("readfile.rb", "r") while (line = file.gets) # Do something with line end file.close Read File in Node fs.readFile('readfile.js', function (err, buffer){ if (err) throw err; // File is read and we're done. }); Saturday, February 2, 13
  • 27. browser.js db.js server.js Saturday, February 2, 13
  • 28. Normal C++ IO Node.js is fast by design. Never blocking on I/O means less threads. Saturday, February 2, 13
  • 29. Program Async.parallel([ function loadData(next) { db.loadData(next); }, function readFile(next) { fs.readFile(fName, next); ], function done(err, items) { if (err) throw err; // Do something with items }); https://github.com/caolan/async Saturday, February 2, 13
  • 30. Program var user; Async.series([ function loadUser(next) { db.getUser(user_id, function(err, u){ user = u; next(err); }); }, function findItems(next) { var sql = "SELECT * FROM store WHERE type=?"; db.query(sql, user.type, next); ], function done(err, items) { if (err) throw err; // Do something with items }); Saturday, February 2, 13
  • 31. Program Mix to do complex stuff like: https://github.com/caolan/async Saturday, February 2, 13
  • 32. Program Javascript, 1995 to 2013 Building Cloud9 Demo Saturday, February 2, 13
  • 35. is to as is to Saturday, February 2, 13
  • 36. You really need HELP Text Saturday, February 2, 13
  • 37. You really need HELP Text Saturday, February 2, 13
  • 38. You really need HELP Text undeclared variable Saturday, February 2, 13
  • 39. You really need HELP Text undeclared variable Iterating using undeclared variable Did you mean length? Saturday, February 2, 13
  • 40. You really need HELP Text undeclared variable Iterating using undeclared variable Did you mean length? Saturday, February 2, 13
  • 41. You really need HELP Text undeclared variable Iterating using undeclared variable Did you mean length? function created in loop Warning: you are in an anonymous inner function with its own this pointer Saturday, February 2, 13
  • 45. Free Linux VM! Saturday, February 2, 13
  • 48. Create Deploy Run/Debug Share Test Saturday, February 2, 13
  • 49. Program Javascript, 1995 to 2012 Building Cloud9 Demo Saturday, February 2, 13
  • 50. Node.js simple server var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello world'); }).listen(3000); Saturday, February 2, 13
  • 51. Node.js real web app express / connect $ npm install -g express $ express --sessions --css stylus --ejs jade $ cd myapp $ npm install $ node app.js app.get('/hello.txt', function(req, res){ res.send('Hello World'); }); app.listen(3000); console.log('Listening on port 3000'); $ node app http://expressjs.com/ Saturday, February 2, 13
  • 52. Node.js real web app Socket.IO 100% JS Realtime apps made possible blurring the differences between browser transport mechanisms. $ npm install socket.io Server Client var io = require('socket.io'); <script src=/slideshow/javascript-in-the-cloud/16306312/"/socket.io/socket.io.js"></script> // attached to the express app <script> // or runs standalone on port 80 var socket = io.connect('http://localhost'); io = io.listen(app || 80); socket.on('message', function (msg) { io.sockets.on('connection', function (socket) { console.log(msg); socket.on('message', function (msg) { socket.send({ info: 'trash' }); console.log(msg); }); }); </script> }); http://socket.io Saturday, February 2, 13
  • 53. Future (Architect) A simple yet powerful plugin system for large-scale Node.js applications Dependency Injection for JavaScript Managing > ~100K LOC of JS JS: Dynamically typed - Singly threaded http://github.com/c9/architect Saturday, February 2, 13
  • 54. Wrap-Up Node.js is brilliant for modern web apps If you do realtime app that is meant to be scalable, you should probably consider Node.js & Socket.io Scale your code base: http://github.com/c9/architect for your application. Check out c9.io for a serious online IDE. Saturday, February 2, 13
  • 55. Text http://c9.io Mostafa Eweda github.com/mostafaeweda @mostafaeweda Saturday, February 2, 13