zoukankan      html  css  js  c++  java
  • An innovative way to replace AJAX and JSONP using node.js and socket.io

    An innovative way to replace AJAX and JSONP using node.js and socket.io - Olivier Scherrer

    An innovative way to replace AJAX and JSONP using node.js and socket.io

    I was so happy the first time I used socket.io, seeing how fast, reliable and easy to use it is, that when I started doing XHRs I felt that something was wrong.
    Current State of the Art implies using AJAX calls coupled with JSONP for getting data from a 3rd party server. To new applications we’re also adding WebSockets that allow to push data from the server to the client. Three different techniques for carrying data, can’t we unify them?

    Actually, it turns out that we can. Let’s imagine something like this: data is fetched by the node.js server. By data I mean any data, whether it comes from a database, a web service, the file system, actually anything that node.js can have access to.
    Each data source is accessed by what would be called a request handler.
    And when the data is available on the node.js server, it can be accessed from within the application and be streamed to the client using socket.io.

    It would resemble something like this:

    How would it work from the client side?

    A component, let’s call it Transport, would be responsible to query the requests handlers. For instance, verifying a browserID assertion would look like:

    Transport.request("BrowserID", assertion, callback);
    

    Fetching data from CouchDB would look like:

    Transport.request("CouchDB", { path: "/db/_all_docs" }, callback);
    

    And opening a keep-alive socket that would trigger the callback for every new chunk:

    Transport.listen("CouchDB", { path: "/db/_changes" }, callback);
    

    And the exact same syntax would work on the server side with a Transport directly connected to the requests handlers.

    How to trick socket.io to transport the requests params and push the result back to the client?

    Think of it like JsonP. You load a script on a different website which pads the result with a function name that you’ve previously defined.
    When you get this result, the callback is executed.

    So what I do is, I send the requests params to the server and I ask it to reply on a previously defined channel (a unique one).
    The server executes the request through the handler, and streams the result back to the client. If transport.request is called, the channel is closed right away,
    otherwise a function responsible for closing it is returned.

    The solution has 5 major benefits

    • One unique transport
    • Multi-purpose transport that can stream binary data too
    • Based on well known technologies
    • Easy to use
    • No cross-domain issues

    Want to see it in action?

    The solution was successfully implemented in Olives JS Framework, which Transport module can be found here, and requests handlers are explained here.

    There’s a simple application currently being developed that also uses this Transport module and another use case

    Warning

    A discussion is going on on socket.io’s google groups. I’m exposing a database to the browser’s application to showcase this solution but this has security issues. I’m looking for a way to secure this and will post about it, until then, just be aware of the implications.

  • 相关阅读:
    JVM调优2
    CAP理论/AP架构/CP架构
    JDK8 JVM性能优化-1
    string+和stringbuffer的速度比较
    @SpringBootApplication注解分析
    Spring Cloud底层原理
    Window 下安装 redis
    Spring的任务调度@Scheduled注解——task:scheduler和task:executor的解析
    多线程捕获线程中的异常
    将 HTML 页面内容转换为图片或PDF文件
  • 原文地址:https://www.cnblogs.com/lexus/p/2493644.html
Copyright © 2011-2022 走看看