0

There's no persistent memory in webtasks, so passport's default MemoryStore won't work. I do know webtask offers persistant storage so perhaps I could use that somehow?

Gunar Gessner
  • 2,331
  • 23
  • 23

1 Answers1

0

Although it would be possible to use context.storage by hacking with a compiler (e.g. a fork of webtask-tools) it's probably not worth it as storage size limit is 500kb.

I would just get a free 500mb mongodb database from mlab and use connect-mongo.

Gunar Gessner
  • 2,331
  • 23
  • 23