├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── lib.js ├── package.json ├── src └── elasticitems7x.js └── tests ├── elasticitems7xSpec.js ├── fixtures ├── error.jsonl └── list.jsonl └── streamSpec.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itemsapi/elasticbulk/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /mongo.js 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itemsapi/elasticbulk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itemsapi/elasticbulk/HEAD/README.md -------------------------------------------------------------------------------- /lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itemsapi/elasticbulk/HEAD/lib.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itemsapi/elasticbulk/HEAD/package.json -------------------------------------------------------------------------------- /src/elasticitems7x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itemsapi/elasticbulk/HEAD/src/elasticitems7x.js -------------------------------------------------------------------------------- /tests/elasticitems7xSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itemsapi/elasticbulk/HEAD/tests/elasticitems7xSpec.js -------------------------------------------------------------------------------- /tests/fixtures/error.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itemsapi/elasticbulk/HEAD/tests/fixtures/error.jsonl -------------------------------------------------------------------------------- /tests/fixtures/list.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itemsapi/elasticbulk/HEAD/tests/fixtures/list.jsonl -------------------------------------------------------------------------------- /tests/streamSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itemsapi/elasticbulk/HEAD/tests/streamSpec.js --------------------------------------------------------------------------------