DEPRECATED! Jeff Wilcox (Senior Software Development Lead on MSFT's WP Team) has released a more "official" library to send Push Notifications to WP7
WP7Push is a Node library to send Push Notifications to Windows Phone 7 Apps using Node.
At the moment of the very initial version we only support Toast Notifications, but in a near future we'll support:
-
Toast Notifications
-
Raw Notifications
-
Tile Notifications
Starting with 0.1, you'll be able to install it using npm:
$ npm install wp7push
var push = require('wp7push');
var purl = "Push URL provided by the WP7 Application";
push.sendToastNotification("title", "subtitle", purl);