When writing node.js code with the parse javascript library, it's required to initialized it with the "JavascriptKey". When using the JavascriptKey and creating a push notification, it is required to turn on "client push". The parse interface says this about client push:
Allow pushes to be sent using the public client keys. Useful during development, but we suggest disabling it on production apps.
So, it seems like something I'd rather not keep on in production, especially since I'm only creating push notifications from the server.
Do I have to use the JavaScript key with node.js? Should I be going about all this a different way?