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

  • 相关阅读:
    Linux网络设置
    Linux文件权限
    对象缓冲池
    环形缓冲区ringbuffer
    linux字符集设置
    共享内存(ShareMemory)
    堆算法(make_heap,push_heap,pop_heap, sort_heap)
    (广州)软件开发定制服务,工作流引擎 OA 库存管理系统
    工作流规范WfMC是什么?
    开启MSDTC的方法
  • 原文地址:https://www.cnblogs.com/lexus/p/2493893.html
Copyright © 2011-2022 走看看