Thomas
Thomas

Reputation: 4297

Send Windows Phone Push Notifications using WebJobs & nodejs

I am currently using nodejs and a scheduled webjob to query a website and save some data to a json file for further consumption in a native Windows Phone app. Now I'd like to add a feature where I can notify the users if new data was found on the website using push notifications. Unfortunately I have not found any info on how one might do this or if that is even possible atm.

Upvotes: 0

Views: 820

Answers (1)

Tomasz Janczuk
Tomasz Janczuk

Reputation: 3248

The https://github.com/tjanczuk/wns Node.js module serves this exact purpose.

Upvotes: 1

Related Questions