├── .env ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── npm-ci.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── coverage-badge.svg ├── docker ├── README.md ├── docker-compose.6.yml └── docker-compose.7.yml ├── docs ├── .nojekyll ├── assets │ ├── highlight.css │ ├── main.js │ ├── navigation.js │ ├── search.js │ └── style.css ├── coverage │ ├── coverage-summary.json │ ├── lcov-report │ │ ├── base.css │ │ ├── block-navigation.js │ │ ├── favicon.png │ │ ├── index.html │ │ ├── index.ts.html │ │ ├── mongodb-session.ts.html │ │ ├── mongoose-session.ts.html │ │ ├── prettify.css │ │ ├── prettify.js │ │ ├── sort-arrow-sprite.png │ │ ├── sorter.js │ │ └── type.ts.html │ └── lcov.info ├── functions │ ├── sessionDeserializer.html │ └── sessionSerializer.html ├── index.html ├── modules.html └── types │ └── SerializedSession.html ├── jest.config.ts ├── jest.setup.js ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── src ├── index.ts ├── mongodb-session.ts ├── mongoose-session.ts └── type.ts ├── test ├── mongodb-session.test.ts └── mongoose-session.test.ts └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/.env -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | docs 3 | coverage 4 | node_modules 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/npm-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/.github/workflows/npm-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/README.md -------------------------------------------------------------------------------- /coverage-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/coverage-badge.svg -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-compose.6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docker/docker-compose.6.yml -------------------------------------------------------------------------------- /docker/docker-compose.7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docker/docker-compose.7.yml -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/assets/navigation.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/coverage/coverage-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/coverage-summary.json -------------------------------------------------------------------------------- /docs/coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /docs/coverage/lcov-report/block-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov-report/block-navigation.js -------------------------------------------------------------------------------- /docs/coverage/lcov-report/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov-report/favicon.png -------------------------------------------------------------------------------- /docs/coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/index.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov-report/index.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/mongodb-session.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov-report/mongodb-session.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/mongoose-session.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov-report/mongoose-session.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /docs/coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /docs/coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /docs/coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /docs/coverage/lcov-report/type.ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov-report/type.ts.html -------------------------------------------------------------------------------- /docs/coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/coverage/lcov.info -------------------------------------------------------------------------------- /docs/functions/sessionDeserializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/functions/sessionDeserializer.html -------------------------------------------------------------------------------- /docs/functions/sessionSerializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/functions/sessionSerializer.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/types/SerializedSession.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/docs/types/SerializedSession.html -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/jest.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mongodb-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/src/mongodb-session.ts -------------------------------------------------------------------------------- /src/mongoose-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/src/mongoose-session.ts -------------------------------------------------------------------------------- /src/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/src/type.ts -------------------------------------------------------------------------------- /test/mongodb-session.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/test/mongodb-session.test.ts -------------------------------------------------------------------------------- /test/mongoose-session.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/test/mongoose-session.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/mongodb-session-serializer/HEAD/tsconfig.json --------------------------------------------------------------------------------