chaosfae

Results 7 comments of chaosfae

> are there any plans for adding built-in support for session signing and verification, similar to Remix's implementation. This would help protect against session tampering and provide developers with secure...

A feature I would like to see is the ability to use custom session read queries. For KV stores, it isn't super relevant, but if you are using an general...

if you want to dynamically render the page based on a per-tab ID, then it still has to be something sent with the page request and unique to the tab....

@Nettsentrisk for a very good reason! stateless authentication makes it impossible to invalidate sessions or ensure a session is logged out. making it so you can requires server side state,...

> I see that this proposal doesn't have auth as a goal for the implementation, only to provide session data for a user, regardless of authentication/security. this is interesting as...

The type checked rules require the `projectService` (or older `project`) option to be set. Add this to your config array: ```js { languageOptions: { parserOptions: { projectService: { allowDefaultProject: ["*.astro",...

Ok! Update to this, it seems that it's very specifically `projectService` that causes this failure. `projectService` is the recommended and new option superseding `project` (ref: https://typescript-eslint.io/packages/parser#project). If you use `project:...