Is there a way to close the browser and then reopen the site having the route being the same one it was when closed?

ps. Using react and flow-router if thats any help +meteor accounts-ui package

I would use local storage. As a matter of fact if you inspect the Meteor object in the console, they’ve already created an abstraction for it, I think it’s Meteor._localStorage. If it’s not there you might need to install the localstorage package.

Essentially on meteor startup you check for the last route in local storage and then go directly to it.

1 Like