├── .changelog.js ├── .circleci ├── config.yml └── deploy.sh ├── .gitattributes ├── .gitignore ├── .npmignore ├── .prettierrc ├── .version-bump.js ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── api-doc.md ├── docs ├── README.md ├── classes │ ├── _src_database_.database.md │ └── _src_statement_.statement.md ├── globals.md ├── interfaces │ ├── _src_interfaces_.imigrate.migrationfile.md │ ├── _src_interfaces_.imigrate.migrationparams.md │ ├── _src_interfaces_.isqlite.config.md │ ├── _src_interfaces_.isqlite.runresult.md │ └── _src_interfaces_.isqlite.sqlobj.md └── modules │ ├── _src_database_.md │ ├── _src_index_.md │ ├── _src_interfaces_.imigrate.md │ ├── _src_interfaces_.isqlite.md │ ├── _src_interfaces_.md │ ├── _src_statement_.md │ ├── _src_utils_migrate_.md │ └── _src_utils_strings_.md ├── jest.config.js ├── migrations ├── 001-initial.sql ├── 002-some-feature.sql ├── 003-test-cert.sql ├── 004-no-down.sql └── README.md ├── package.json ├── src ├── Database.ts ├── Statement.ts ├── __tests__ │ ├── Sqlite3.test.ts │ ├── each.test.ts │ └── index.test.ts ├── index.mjs ├── index.ts ├── interfaces.ts ├── utils │ ├── __tests__ │ │ ├── format-error.test.ts │ │ └── migrate.test.ts │ ├── format-error.ts │ ├── migrate.ts │ └── strings.ts └── vendor-typings │ └── sqlite3 │ └── index.d.ts ├── tsconfig.json ├── typedoc.js └── wallaby.js /.changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/.changelog.js -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/.circleci/deploy.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "none" 3 | } 4 | -------------------------------------------------------------------------------- /.version-bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/.version-bump.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/README.md -------------------------------------------------------------------------------- /api-doc.md: -------------------------------------------------------------------------------- 1 | See `globals.md` for the API listings. 2 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/classes/_src_database_.database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/classes/_src_database_.database.md -------------------------------------------------------------------------------- /docs/classes/_src_statement_.statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/classes/_src_statement_.statement.md -------------------------------------------------------------------------------- /docs/globals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/globals.md -------------------------------------------------------------------------------- /docs/interfaces/_src_interfaces_.imigrate.migrationfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/interfaces/_src_interfaces_.imigrate.migrationfile.md -------------------------------------------------------------------------------- /docs/interfaces/_src_interfaces_.imigrate.migrationparams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/interfaces/_src_interfaces_.imigrate.migrationparams.md -------------------------------------------------------------------------------- /docs/interfaces/_src_interfaces_.isqlite.config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/interfaces/_src_interfaces_.isqlite.config.md -------------------------------------------------------------------------------- /docs/interfaces/_src_interfaces_.isqlite.runresult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/interfaces/_src_interfaces_.isqlite.runresult.md -------------------------------------------------------------------------------- /docs/interfaces/_src_interfaces_.isqlite.sqlobj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/interfaces/_src_interfaces_.isqlite.sqlobj.md -------------------------------------------------------------------------------- /docs/modules/_src_database_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/modules/_src_database_.md -------------------------------------------------------------------------------- /docs/modules/_src_index_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/modules/_src_index_.md -------------------------------------------------------------------------------- /docs/modules/_src_interfaces_.imigrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/modules/_src_interfaces_.imigrate.md -------------------------------------------------------------------------------- /docs/modules/_src_interfaces_.isqlite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/modules/_src_interfaces_.isqlite.md -------------------------------------------------------------------------------- /docs/modules/_src_interfaces_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/modules/_src_interfaces_.md -------------------------------------------------------------------------------- /docs/modules/_src_statement_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/modules/_src_statement_.md -------------------------------------------------------------------------------- /docs/modules/_src_utils_migrate_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/modules/_src_utils_migrate_.md -------------------------------------------------------------------------------- /docs/modules/_src_utils_strings_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/docs/modules/_src_utils_strings_.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/jest.config.js -------------------------------------------------------------------------------- /migrations/001-initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/migrations/001-initial.sql -------------------------------------------------------------------------------- /migrations/002-some-feature.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/migrations/002-some-feature.sql -------------------------------------------------------------------------------- /migrations/003-test-cert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/migrations/003-test-cert.sql -------------------------------------------------------------------------------- /migrations/004-no-down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/migrations/004-no-down.sql -------------------------------------------------------------------------------- /migrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/migrations/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/package.json -------------------------------------------------------------------------------- /src/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/Database.ts -------------------------------------------------------------------------------- /src/Statement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/Statement.ts -------------------------------------------------------------------------------- /src/__tests__/Sqlite3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/__tests__/Sqlite3.test.ts -------------------------------------------------------------------------------- /src/__tests__/each.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/__tests__/each.test.ts -------------------------------------------------------------------------------- /src/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/index.mjs -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/utils/__tests__/format-error.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/utils/__tests__/format-error.test.ts -------------------------------------------------------------------------------- /src/utils/__tests__/migrate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/utils/__tests__/migrate.test.ts -------------------------------------------------------------------------------- /src/utils/format-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/utils/format-error.ts -------------------------------------------------------------------------------- /src/utils/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/utils/migrate.ts -------------------------------------------------------------------------------- /src/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/utils/strings.ts -------------------------------------------------------------------------------- /src/vendor-typings/sqlite3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/src/vendor-typings/sqlite3/index.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/typedoc.js -------------------------------------------------------------------------------- /wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriasoft/node-sqlite/HEAD/wallaby.js --------------------------------------------------------------------------------