zoukankan      html  css  js  c++  java
  • nowjs for Node Directly call remote functions in Javascript

    nowjs for Node - Directly call remote functions in Javascript

    Server push

    You can call easily client functions from the server and server functions from the client. That means you can push to the client simply by calling a client-side Javascript function on the server. Communication is achieved using Socket.io

    No configuration

    There's nothing to configure, really. You pass in the port you want NowJS to run on, or a http server object and you're good to go. On the client side, simply include
    <script src="http://yourserver/NowJS/now.js"></script>
    and the correct server/port will be included automatically

    Compatible with frameworks

    NowJS doesn't take over anything. You can use it with existing frameworks for both client Javascript and Node.js

    No more AJAX

    Never deal with XHR, routing, and serialization/parsing. NowJS takes care of that. Just call the function on the server.

    Cross-domain support

    You can use NowJS to communication cross-domain, push and pull, so throw out your XHR.

    Cross browser and platform

    NowJS v0.5 is supported in Chrome, Opera, Safari, Firefox, iPad/iPhone/iPod Touch, Android, webOS, Internet Explorer 9, and has beta support for IE8/7/6

    Groups, aka 'rooms' or 'channels'

    Using the `groups` feature, NowJS allows you to easily group clients into one or multiple groups. This allow you to address a subset of `everyone` via function calls. Checkout the multiroom chat example.

    Coming soon: Distributed NowJS

    Single threaded NowJS can handle up to 6500 concurrent users on the chatroom example
    For customers that are looking for even greater scalability and reliability, we'll soon be licensing a distributed version of NowJS currently under development. Contact us at sales@nowjs.com

  • 相关阅读:
    LG2664 树上游戏
    「NOI2007」 货币兑换
    「NOI2012」骑行川藏
    LG4721 【模板】分治 FFT
    LG4783 【模板】矩阵求逆
    test20181019 B君的第二题
    LOJ129 Lyndon 分解
    「NOI2017」泳池
    LG4723 【模板】常系数线性递推
    「AHOI / HNOI2017」礼物
  • 原文地址:https://www.cnblogs.com/lexus/p/2493893.html
Copyright © 2011-2022 走看看