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

highsql

Package Overview
Dependencies
Maintainers
0
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

highsql - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

3

package.json
{
"name": "highsql",
"version": "1.1.3",
"version": "1.1.4",
"description": "High level MySQL utility",

@@ -15,2 +15,3 @@ "main": "./src/index.js",

"dependencies": {
"highsql": "^1.1.3",
"mysql2": "^3.10.1"

@@ -17,0 +18,0 @@ },

import { createPool } from 'mysql2/promise';
// Define the Connection class
class Connection {
export class Connection {
// Constructor for the Connection class

@@ -64,3 +64,1 @@ constructor(host, user, password, database, connectionLimit = 10, port = 3306) {

}
// Export the Connection class
export default Connection;
import { createPool, Pool, RowDataPacket, ResultSetHeader } from 'mysql2/promise';
// Define the Connection class
class Connection {
export class Connection {
private pool: Pool;

@@ -70,5 +70,2 @@

}
}
// Export the Connection class
export default Connection;
}
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