# atmosphere-javascript **Repository Path**: mirrors_vaadin/atmosphere-javascript ## Basic Information - **Project Name**: atmosphere-javascript - **Description**: atmosphere-javascript - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Welcome to Atmosphere: The Asynchronous WebSocket/Comet Framework The Atmosphere Framework contains client and server side components for building Asynchronous Web Applications. The majority of [popular frameworks](https://github.com/Atmosphere/atmosphere/wiki/Atmosphere-PlugIns-and-Extensions) are either supporting Atmosphere or supported natively by the framework. The Atmosphere Framework supports all major [Browsers and Servers](https://github.com/Atmosphere/atmosphere/wiki/Supported-WebServers-and-Browsers) Follow us on [Twitter](http://www.twitter.com/atmo_framework) or get the latest news [here](http://async-io.org) Atmosphere transparently supports WebSockets, Server Sent Events (SSE), Long-Polling, HTTP Streaming (Forever frame) and JSONP. * [Node.js client](https://github.com/Atmosphere/atmosphere.js-node) * [Browser client](https://raw.github.com/Atmosphere/atmosphere-javascript/master/modules/javascript/src/main/webapp/javascript/atmosphere.js) * [Browser client as a jQuery plugin (deprecated for 2.3.x)](https://raw.github.com/Atmosphere/atmosphere-javascript/javascript-2.2.x/modules/jquery/src/main/webapp/jquery/jquery.atmosphere.js) Note: In version 2.2.x, there are two versions of the scripts a jquery plugin version jquery.atmosphere.js and a plain javascript version atmosphere.js. As keeping both versions requires overhead and also confuses the users which to choose, in 2.3.x, only the plain javascript version will be supported. If you are currently using the 2.2.x jquery version, please consider migrating to the plain javascript version. ## Install ### manually You can get atmosphere.js in several ways. If you use a script tag whose src attribute is set to the below one, browser may not load it because the content type served by raw.github.com is text/plain. * [atmosphere v2.3.5](https://raw.github.com/Atmosphere/atmosphere-javascript/javascript-project-2.3.5/modules/javascript/src/main/webapp/javascript/atmosphere.js) Also it is available from the following places, but there may be delays between a release and its availability. We don't manage these ways officially but they are managed by open source community so you can contribute. * CDNJS CDN - [atmosphere](http://cdnjs.com/libraries/atmosphere/) * WebJars - [atmosphere](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.webjars%22%20AND%20a%3A%22atmosphere-javascript%22) If you need to support Inetrnet Explorer 7, Firefox 3.0, Safari 3 and Opera 10 and lower versions, a `JSON.stringify` / `JSON.parse` polyfill is henceforth required like: https://github.com/bestiejs/json3 ### maven ```xml org.atmosphere.client javascript 2.3.3 ``` ### npm ```shell npm install atmosphere.js ``` ### bower ```shell bower install atmosphere ``` ## Docs Full API documentation can be read [here](https://github.com/Atmosphere/atmosphere/wiki/atmosphere.js-API) and a lot of samples [here](https://github.com/Atmosphere/atmosphere-samples) It is recommended to always use the version that matches Atmosphere's runtime. Latest version may work with lower version, but not officially tested. ### Changelogs * 2.3 release: [2.3.2](https://goo.gl/uqo3Pc) [2.3.1](https://goo.gl/Xs6gV6) [2.3.0](https://goo.gl/Ey4K7M)