├── .gitignore ├── LICENSE.md ├── README.md ├── example ├── app.js ├── connection.json.example └── package.json ├── index.js ├── lib ├── exports.ts └── typescript │ ├── Collection.ts │ ├── Driver.ts │ ├── Model.ts │ ├── helpers │ ├── Clone.ts │ ├── Filter.ts │ ├── ObjectWrapper.ts │ ├── Sql │ │ ├── SQLHelper.ts │ │ └── SqlString.ts │ └── Where.ts │ └── interfaces │ ├── CrudInterface.ts │ ├── DriverInterface.ts │ ├── GetSetInterface.ts │ ├── ModelEventInterface.ts │ ├── ToJSONInterface.ts │ ├── ToStringInterface.ts │ └── WhereInterface.ts └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/README.md -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/example/app.js -------------------------------------------------------------------------------- /example/connection.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/example/connection.json.example -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/example/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/index.js -------------------------------------------------------------------------------- /lib/exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/exports.ts -------------------------------------------------------------------------------- /lib/typescript/Collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/Collection.ts -------------------------------------------------------------------------------- /lib/typescript/Driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/Driver.ts -------------------------------------------------------------------------------- /lib/typescript/Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/Model.ts -------------------------------------------------------------------------------- /lib/typescript/helpers/Clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/helpers/Clone.ts -------------------------------------------------------------------------------- /lib/typescript/helpers/Filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/helpers/Filter.ts -------------------------------------------------------------------------------- /lib/typescript/helpers/ObjectWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/helpers/ObjectWrapper.ts -------------------------------------------------------------------------------- /lib/typescript/helpers/Sql/SQLHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/helpers/Sql/SQLHelper.ts -------------------------------------------------------------------------------- /lib/typescript/helpers/Sql/SqlString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/helpers/Sql/SqlString.ts -------------------------------------------------------------------------------- /lib/typescript/helpers/Where.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/helpers/Where.ts -------------------------------------------------------------------------------- /lib/typescript/interfaces/CrudInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/interfaces/CrudInterface.ts -------------------------------------------------------------------------------- /lib/typescript/interfaces/DriverInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/interfaces/DriverInterface.ts -------------------------------------------------------------------------------- /lib/typescript/interfaces/GetSetInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/interfaces/GetSetInterface.ts -------------------------------------------------------------------------------- /lib/typescript/interfaces/ModelEventInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/interfaces/ModelEventInterface.ts -------------------------------------------------------------------------------- /lib/typescript/interfaces/ToJSONInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/interfaces/ToJSONInterface.ts -------------------------------------------------------------------------------- /lib/typescript/interfaces/ToStringInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/interfaces/ToStringInterface.ts -------------------------------------------------------------------------------- /lib/typescript/interfaces/WhereInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/lib/typescript/interfaces/WhereInterface.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knyga/light-orm/HEAD/package.json --------------------------------------------------------------------------------