├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── cjs ├── index.js ├── package.json └── utils.js ├── esm ├── index.js └── utils.js ├── package.json └── test ├── bench-better-sqlite.js ├── bench-sqlite-tag-spawned.js ├── benchmark.js ├── cluster.js ├── concurrent ├── concurrent.cjs ├── index.js └── persistent.js /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/README.md -------------------------------------------------------------------------------- /cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/cjs/index.js -------------------------------------------------------------------------------- /cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /cjs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/cjs/utils.js -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/esm/index.js -------------------------------------------------------------------------------- /esm/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/esm/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/package.json -------------------------------------------------------------------------------- /test/bench-better-sqlite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/test/bench-better-sqlite.js -------------------------------------------------------------------------------- /test/bench-sqlite-tag-spawned.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/test/bench-sqlite-tag-spawned.js -------------------------------------------------------------------------------- /test/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/test/benchmark.js -------------------------------------------------------------------------------- /test/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/test/cluster.js -------------------------------------------------------------------------------- /test/concurrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/test/concurrent -------------------------------------------------------------------------------- /test/concurrent.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/test/concurrent.cjs -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/test/index.js -------------------------------------------------------------------------------- /test/persistent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/sqlite-tag-spawned/HEAD/test/persistent.js --------------------------------------------------------------------------------