We're a place where coders share, stay up-to-date and grow their careers.
Is there any better way to securely communicate a short data between two separate Angular Applications that don't run in the browser at the same time. For example, send some JSON data from example.com/firstAngularapp to example.com/OtherAngularApp ?
For sure if they're at the same domain you can use localStorage or any relevant web storage/db to sync that data
Is there any better way to securely communicate a short data between two separate Angular Applications that don't run in the browser at the same time.
For example, send some JSON data from example.com/firstAngularapp to example.com/OtherAngularApp ?
For sure if they're at the same domain you can use localStorage or any relevant web storage/db to sync that data