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

.NET developer in JavaScript world

.NET developer in JavaScript world

Lightning talk I gave in #OdessaJS conference

Alexander Beletsky

April 14, 2013
Tweet

More Decks by Alexander Beletsky

Other Decks in Programming

Transcript

  1. .NET Developer
    in JavaScript World
    The story

    View Slide

  2. Just realized…
    I’m not doing .NET
    for ~1 year

    View Slide

  3. WTF?

    View Slide

  4. View Slide

  5. jQuery

    View Slide

  6. .NET

    View Slide

  7. Backbone.js
    +
    Node.js

    View Slide

  8. I know JavaScript
    … I thought

    View Slide

  9. $(function () {
    // do stuff here..
    });

    View Slide

  10. Long and hard
    path of learning…

    View Slide

  11. Did JavaScript
    change me as
    developer?

    View Slide

  12. … JS is dynamic
    var obj = {
    foo: function () {
    }
    };
    obj.boo = function (param) {
    };

    View Slide

  13. … JS infrastructure
    is light
    $ node server.js

    View Slide

  14. … Node.js
    var app = express();
    app.get(‘/’, function (req, res) {
    res.end();
    });

    View Slide

  15. Thanks,
    @alexbeletsky

    View Slide