├── .gitignore ├── README.md ├── elasticsearch-orm.js ├── package.json ├── src └── schemas.js └── tests └── schemas.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeresig/elasticsearch-orm/HEAD/README.md -------------------------------------------------------------------------------- /elasticsearch-orm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeresig/elasticsearch-orm/HEAD/elasticsearch-orm.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeresig/elasticsearch-orm/HEAD/package.json -------------------------------------------------------------------------------- /src/schemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeresig/elasticsearch-orm/HEAD/src/schemas.js -------------------------------------------------------------------------------- /tests/schemas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeresig/elasticsearch-orm/HEAD/tests/schemas.js --------------------------------------------------------------------------------