├── .gitignore ├── .karma-parcel ├── __parcel_bundled_tests.js └── dist │ ├── __parcel_bundled_tests.js │ └── __parcel_bundled_tests.js.map ├── .parcelrc ├── .prettierrc ├── LICENSE ├── README.md ├── dist ├── express-worker.d.ts ├── express-worker.d.ts.map ├── express-worker.js ├── express-worker.js.map └── express-worker.umd.js ├── karma.conf.js ├── package.json ├── src └── index.ts ├── tests ├── bootstrap.ts ├── responses │ └── exists.html ├── service-worker │ ├── service-worker.ts │ └── tsconfig.json ├── specs │ ├── global.d.ts │ ├── index.ts │ └── tsconfig.json └── tsconfig.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .firebase 3 | .parcel-cache -------------------------------------------------------------------------------- /.karma-parcel/__parcel_bundled_tests.js: -------------------------------------------------------------------------------- 1 | import "../tests/sw.ts"; -------------------------------------------------------------------------------- /.karma-parcel/dist/__parcel_bundled_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/.karma-parcel/dist/__parcel_bundled_tests.js -------------------------------------------------------------------------------- /.karma-parcel/dist/__parcel_bundled_tests.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/.karma-parcel/dist/__parcel_bundled_tests.js.map -------------------------------------------------------------------------------- /.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/.parcelrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/README.md -------------------------------------------------------------------------------- /dist/express-worker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/dist/express-worker.d.ts -------------------------------------------------------------------------------- /dist/express-worker.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/dist/express-worker.d.ts.map -------------------------------------------------------------------------------- /dist/express-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/dist/express-worker.js -------------------------------------------------------------------------------- /dist/express-worker.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/dist/express-worker.js.map -------------------------------------------------------------------------------- /dist/express-worker.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/dist/express-worker.umd.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/tests/bootstrap.ts -------------------------------------------------------------------------------- /tests/responses/exists.html: -------------------------------------------------------------------------------- 1 | Hello world from /tests/responses/exists.html 2 | -------------------------------------------------------------------------------- /tests/service-worker/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/tests/service-worker/service-worker.ts -------------------------------------------------------------------------------- /tests/service-worker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/tests/service-worker/tsconfig.json -------------------------------------------------------------------------------- /tests/specs/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/tests/specs/global.d.ts -------------------------------------------------------------------------------- /tests/specs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/tests/specs/index.ts -------------------------------------------------------------------------------- /tests/specs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/tests/specs/tsconfig.json -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcpuckett/express-worker/HEAD/tsconfig.json --------------------------------------------------------------------------------