JavaScript library for real-ti
Notice: Portal has reached its End-of-Life. Use Cettia.
PortalThe Portal is a concise, lightweight and feature-rich JavaScript library for real-time web application development. The Portal provides socket for browser-based and Node.js-based applications that need two-way communication with servers, but also aims to utilize a full duplex connection for modern web application development.
The Portal greatly simplifies things essential to real-time web applications like connection sharing, reply, heartbeat and disconnection detection. The Portal is designed by carefully considering known issues and best practices of real-time web to provide a reliable socket based on its simple protocol.
Website: http://flowersinthesand.github.io/portal/ Twitter: http://twitter.com/flowersits Mailing list: https://groups.google.com/d/forum/portal_project Test suiteSince this project follows Test Driven Development (TDD) principles well, looking at and running the test suite is a best way to understand the portal deeply. Every test has a title specifying a single behavior and is wrriten in QUnit.
client.js
: Tests portal and socket using dummy and mock transport.
server.js
: Tests transports by interacting with portal server.
Running
In order to run test suite, you need to have Node.js or write your portal server.
Clone this repository or simply download it as a zip and extract it.
git clone https://github.com/flowersinthesand/portal.git cd portal
Install dependencies. If you are on Windows, you may have trouble in installing Contextify. See a installation guide from jsdom.
npm install
Start server on localhost at port 8080 and 8090. Both servers serve static assets but portal server is on 8080.
node test/server As browser client
Open http://localhost:8080 for same origin or http://localhost:8090 for cross origin in a browser.
As Node.js clientType node test/index
in other console.
A server passing the test suite is a very portal server. Writing portal server is not such hard. One of the goals of this project from day 1 (jquery-stream) is easy to implement in server-side as simple as dealing with Ajax. As various transports and features are added, it gets harder than dealing with Ajax, but still quite easy comparing to other similar projects.
Anyway, the portal server used to develop portal.js is a good tutorial to write portal server and less than 2KB minified and gzipped though it doesn't matter. Check out server.js.
版权声明:
1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。2、网站不提供资料下载,如需下载请到原作者页面进行下载。