0.11.0 • Published 8 years ago

porter-client v0.11.0

Weekly downloads
9
License
MIT
Repository
github
Last release
8 years ago

Porter

Render HTML on the server and push it directly to a frontend element.

Installation

Install with npm

npm install --save porter-client

Install with bower

bower install --save porter

Usage

<html>
  <head>
    <title>It's Porter TIME!!!</title>
  </head>
  <body>
    <div id='main'>
      ..Main..
    </div>

    <script src="/js/porter.js"></script>
    <script src="/js/hook.js"></script>
    <script src="/js/connectors/ws_connector.js"></script>

    <script>
      var connector = new WsConnector("ws://localhost:8080/websocket")
      var hook = new Hook("main");
      var porter = new Porter(connector);
      porter.whitelist.add_rpc("hook.render", function(args) {
        hook.render(args);
      });

      porter.connect();
    </script>
  </body>
</html>

TODOS:

  • Make connectors optional and named.
  • Give connectors a kind array property.
  • Abstract Consumer.
  • Abstract Producer.
0.11.0

8 years ago

0.10.0

8 years ago

0.9.0

8 years ago

0.8.1

8 years ago

0.8.0

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago