Skip to content
Lightweight communication layer with Phonegap
Find file
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Failed to load latest commit information.
dest
src
.gitignore
Gruntfile.js added documentation to the library
LICENSE Initial commit
README.md Update README.md
bower.json
package.json

README.md

pulse.js

Lightweight communication layer with phonegap

How to install

bower install pulse.js

Examples

// Listen to event
Pulse.listen('mapKit.didSelectAnnotationView', function(res) {
     console.log('# mapKit.didSelectAnnotationView callback');
});
// Emit event to iOS
Pulse.beat('MapKit.moveCenter', function(res) {
    console.log('# MapKit.moveCenter', res);
});

To do

  • Extend to read and send objects and arrays.
Something went wrong with that request. Please try again.