3

To all the fullstack and webdevs here:
1. Does anyone know how can I implement progressive rest call in nodejs? (As in knowing the percentage of the loaded data)

2. Can anyone point me to the best way to create a safe admin page in React or Nodejs?
I do need the admin page to be heavily modified and to be full of JS logic

Comments
  • 0
    1. If you want full control on what happen, you can use websocket :
    A. Send slice of your data
    B. Get percent from your server
    C. Display data
    D. GO TO: A

    2. Just google it. They are pletor example and resources about this subject : try 'react redux login router auth'

    Cheers ;)
Add Comment