1

Could i use node module with react. Could i use node-apn module directly in my react project to push notifications?

acoder
  • 249
  • 5
  • 14

1 Answers1

1

No you cannot use this package at client side (in browser) - it is intended to be run in node.js server environment.

Although some of the npm packages that are isomorphic can be run both client and server side.

Amid
  • 21,508
  • 5
  • 57
  • 54