GraysonT
What text editor libraries can be used with Solidjs (not SolidStart)?
my solid js also appear this warning:
App.tsx:58 [Deprecation] Listener added for a synchronous 'DOMNodeInserted' DOM Mutation Event. This event type is deprecated (https://w3c.github.io/uievents/#legacy-event-types) and work is underway to remove it from this browser. Usage of this event listener will cause performance issues today, and represents a risk of future incompatibility. Consider using MutationObserver instead.
18 replies
Solid JS + Auth (How to store the credential)
In this case, can I understand like
if non-sensitive user info can be store in the local storage
but for the session id/token can be store in httpcookies, but both backend and frontend must hosted on same AWS vm instance
13 replies
Solid JS + Auth (How to store the credential)
so http cookies could be the one to authenticate my app?
is it possible to store my user information with token in http cookies, and access from my solid js?
when use axios send the request, the cookies associted with the request, anything related to cookies will handle by backend?
am I getting it correct?
13 replies