0.1.1 • Published 10 years ago

event-source v0.1.1

Weekly downloads
813
License
MIT
Repository
github
Last release
10 years ago

event-source

EventSource polyfill as clean NPM module

Based on EventSource polyfill maintained by Yaffle. See it's repository for more information.

Installation

NPM

In your project path:

$ npm install event-source

Browser

You can easily bundle EventSource for browser with modules-webmake

Usage

Expose in global scope

require('event-source/global');

If native version is already available, above will do nothing (polyfill won't be loaded).

Load locally

var EventSource = require('event-source');

If native version is available it'll be returned instead of polyfill.

Tests Build Status

$ npm test