0

I'm currently developing a banking app using react.js so I need to secure my app form client side. is there any way to open the app only in new window(Not a new tab)?

I need When a user type the url in browser the app should open automatically in a new widow.

like this window enter image description here

And if you know any other security features or other solutions please let me know. thanks

chandu
  • 97
  • 1
  • 7
  • Render full react app in a new window – chandu Mar 30 '23 at 03:20
  • 2
    No. Whether a new "window" is a tab or a desktop window (or something else) is under the control of the person using the browser, not you. – Pointy Mar 30 '23 at 03:26
  • 1
    I'm curious to know how opening it in a new window as opposed to a new tab will make it more secure – Spikatrix Mar 30 '23 at 04:22
  • @Spikatrix you can see the sample image the address bar is disabled and there is no extensions there. – chandu Mar 30 '23 at 05:12

1 Answers1

-1

Did you try this answer? This may resolve your problem.

Answer

TL;DR:

They use

window.open(url, windowName, "height=200,width=200");
TBT
  • 16
  • 1