├── .editorconfig ├── .eslintignore ├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── .releaserc.json ├── CHANGELOG.md ├── LICENSE ├── MIGRATE-v3.md ├── README.md ├── bun.lock ├── deno.lock ├── package.config.ts ├── package.json ├── src ├── errors.ts ├── index.ts ├── parse.ts ├── stream.ts └── types.ts ├── stream.js ├── test ├── fixtures.ts ├── mock.ts ├── multibyte.ts ├── parse.test.ts └── stream.test.ts ├── tsconfig.build.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /dist/stats.html 2 | -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/.releaserc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATE-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/MIGRATE-v3.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/README.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/bun.lock -------------------------------------------------------------------------------- /deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/deno.lock -------------------------------------------------------------------------------- /package.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/package.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/package.json -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/src/parse.ts -------------------------------------------------------------------------------- /src/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/src/stream.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/src/types.ts -------------------------------------------------------------------------------- /stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/stream.js -------------------------------------------------------------------------------- /test/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/test/fixtures.ts -------------------------------------------------------------------------------- /test/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/test/mock.ts -------------------------------------------------------------------------------- /test/multibyte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/test/multibyte.ts -------------------------------------------------------------------------------- /test/parse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/test/parse.test.ts -------------------------------------------------------------------------------- /test/stream.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/test/stream.test.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rexxars/eventsource-parser/HEAD/tsconfig.json --------------------------------------------------------------------------------