Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sequelize-benchmark

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sequelize-benchmark - npm Package Compare versions

Comparing version 0.2.0 to 0.3.0

lib/benchmarks/bulkCreate.js

3

lib/benchmarks/findAll.js

@@ -10,3 +10,4 @@ 'use strict';

const LARGE_SAMPLE_SIZE = 1500, SMALL_SAMPLE_SIZE = 10;
const LARGE_SAMPLE_SIZE = process.env.LARGE_SAMPLE_SIZE || 1500
, SMALL_SAMPLE_SIZE = process.env.SMALL_SAMPLE_SIZE || 10;

@@ -13,0 +14,0 @@ /**

@@ -61,3 +61,6 @@ 'use strict';

return require('./benchmarks/findAll.js')(models, sequelize);
}).catch(Utils.log);
}).then(() => {
return require('./benchmarks/bulkCreate.js')(models, sequelize);
})
.catch(Utils.log);
};
{
"name": "sequelize-benchmark",
"version": "0.2.0",
"version": "0.3.0",
"description": "benchmark for sequelize orm",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -13,3 +13,3 @@ ## Sequelize Benchmark

```bash
```

@@ -23,2 +23,4 @@ `SEQ_USER`, Username for database

`DIALECT`, Dialect to use , `mysql` default
`LARGE_SAMPLE_SIZE`, Sample size for large tests
`SMALL_SAMPLE_SIZE`, Sample size for small tests

@@ -25,0 +27,0 @@ ```

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc