Can I migrate from AWS cognito to Supertokens with...
# general
b
Can I migrate from AWS cognito to Supertokens without any user level downtime? Is there any guide to refer to? Also, for node implementation can I make it work on es5? Or do I need es6 only?
r
hey @blockexplorer you can see about migration steps in our recipe docs.
I think AWS Cognito doesn't allow user password hash export. If that's the case, you should checkout the "User Creation without password hashes" page in the docs
About es5 support. You can use it. Instead of using
import
statements, you can use
require
and it should work
b
Oh got it. Thanks
5 Views