├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.txt ├── Makefile ├── README.md ├── benchmark ├── dblite.js └── sqlite3.js ├── index.html ├── package.json ├── src └── dblite.js ├── template ├── amd.after ├── amd.before ├── copyright ├── license.after ├── license.before ├── md.after ├── md.before ├── node.after ├── node.before ├── var.after └── var.before └── test ├── .test.js └── dblite.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | package-lock.json 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/dblite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/benchmark/dblite.js -------------------------------------------------------------------------------- /benchmark/sqlite3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/benchmark/sqlite3.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/package.json -------------------------------------------------------------------------------- /src/dblite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/src/dblite.js -------------------------------------------------------------------------------- /template/amd.after: -------------------------------------------------------------------------------- 1 | ); -------------------------------------------------------------------------------- /template/amd.before: -------------------------------------------------------------------------------- 1 | define( -------------------------------------------------------------------------------- /template/copyright: -------------------------------------------------------------------------------- 1 | /*! (C) WebReflection Mit Style License */ 2 | -------------------------------------------------------------------------------- /template/license.after: -------------------------------------------------------------------------------- 1 | 2 | */ 3 | -------------------------------------------------------------------------------- /template/license.before: -------------------------------------------------------------------------------- 1 | /*! 2 | -------------------------------------------------------------------------------- /template/md.after: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /template/md.before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/template/md.before -------------------------------------------------------------------------------- /template/node.after: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/node.before: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/var.after: -------------------------------------------------------------------------------- 1 | ; -------------------------------------------------------------------------------- /template/var.before: -------------------------------------------------------------------------------- 1 | var main = -------------------------------------------------------------------------------- /test/.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/test/.test.js -------------------------------------------------------------------------------- /test/dblite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/dblite/HEAD/test/dblite.js --------------------------------------------------------------------------------