New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@fxjs/db-driver

Package Overview
Dependencies
Maintainers
2
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fxjs/db-driver - npm Package Compare versions

Comparing version

to
0.1.0

lib/Typo.js

57

lib/built-ins/base.class.js

@@ -0,2 +1,4 @@

/// <reference types="fib-pool" />
Object.defineProperty(exports, "__esModule", { value: true });
exports.MongoDriver = exports.RedisDriver = exports.SQLiteDriver = exports.MySQLDriver = exports.SQLDriver = exports.Driver = void 0;
const db = require("db");

@@ -26,2 +28,21 @@ const url = require("url");

}
function getDriver(name) {
switch (name) {
case 'mysql':
return MySQLDriver;
case 'sqlite':
return SQLiteDriver;
case 'redis':
return RedisDriver;
case 'mongodb':
return MongoDriver;
default:
if (name) {
const type = Utils.filterDriverType(url.parse(name).protocol);
if (type !== 'unknown')
return getDriver(type);
}
return Driver;
}
}
class Driver {

@@ -51,3 +72,3 @@ constructor(options) {

get uri() {
return url.format(Object.assign({}, this.config, { slashes: this.config.protocol === 'sqlite:' ? false : this.config.slashes, query: this.config.protocol === 'sqlite:' ? {} : this.config.query }));
return url.format(Object.assign(Object.assign({}, this.config), { slashes: this.config.protocol === 'sqlite:' ? false : this.config.slashes, query: this.config.protocol === 'sqlite:' ? {} : this.config.query }));
}

@@ -72,3 +93,3 @@ get isPool() {

/**
* @override
* @description re open db connection
*/

@@ -83,3 +104,3 @@ reopen() {

/**
* @override
* @description open db connection
*/

@@ -90,11 +111,11 @@ open() {

/**
* @override
* @description close db connection
*/
close() { }
/**
* @override
* @description some db connection has `ping` method
*/
ping() { }
/**
* @override
* @description get connection instance but don't change internal status
*/

@@ -127,22 +148,4 @@ getConnection() { return null; }

}
Driver.getDriver = function getDriver(name) {
switch (name) {
case 'mysql':
return MySQLDriver;
case 'sqlite':
return SQLiteDriver;
case 'redis':
return RedisDriver;
case 'mongodb':
return MongoDriver;
default:
if (name) {
const type = Utils.filterDriverType(url.parse(name).protocol);
if (type !== 'unknown')
return getDriver(type);
}
return Driver;
}
};
exports.Driver = Driver;
Driver.getDriver = getDriver;
class SQLDriver extends Driver {

@@ -201,2 +204,3 @@ constructor() {

}
exports.MySQLDriver = MySQLDriver;
class SQLiteDriver extends SQLDriver {

@@ -226,2 +230,3 @@ constructor(conn) {

}
exports.SQLiteDriver = SQLiteDriver;
class RedisDriver extends Driver {

@@ -259,2 +264,3 @@ constructor(conn) {

}
exports.RedisDriver = RedisDriver;
class MongoDriver extends Driver {

@@ -290,1 +296,2 @@ constructor(conn) {

}
exports.MongoDriver = MongoDriver;

@@ -1,2 +0,4 @@

const base_class_1 = require("./built-ins/base.class");
module.exports = base_class_1.Driver;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Driver = void 0;
var base_class_1 = require("./built-ins/base.class");
Object.defineProperty(exports, "Driver", { enumerable: true, get: function () { return base_class_1.Driver; } });
/// <reference types="@fibjs/types" />
Object.defineProperty(exports, "__esModule", { value: true });
exports.arraify = exports.mountPoolToDriver = exports.parsePoolConfig = exports.parseConnectionString = exports.ensureSuffix = exports.castQueryStringToBoolean = exports.forceInteger = exports.filterDriverType = exports.driverUUid = void 0;
const url = require("url");

@@ -4,0 +5,0 @@ const util = require("util");

{
"name": "@fxjs/db-driver",
"version": "0.0.7",
"description": "Fibjs Db Driver",
"version": "0.1.0",
"description": "",
"keywords": [

@@ -11,16 +11,19 @@ "mysql",

],
"author": "Richard <richardo2016@gmail.com>",
"license": "MIT",
"repository": "http://github.com/fxjs-modules/db-driver.git",
"types": "@types/index.d.ts",
"main": "./lib",
"author": "richardo2016 <richardo2016@gmail.com>",
"license": "ISC",
"repository": {
"type": "https",
"url": "https://github.com/fxjs-modules/orm/tree/master/packages/db-driver"
},
"types": "typings/index.d.ts",
"main": "lib",
"unpkg": "./lib/index.cjs.js",
"jsdelivr": "./lib/index.cjs.js",
"scripts": {
"build": "fibjs build.js",
"test-db": "fibjs test/run-db",
"test-db-mysql": "cross-env URI=mysql://root:@localhost:3306/db-driver npm run test-db",
"build": "ftsc ./src/* --outDir ./lib",
"test": "fibjs test",
"ci": "npm run build && npm run test",
"prepublishOnly": "npm run build"
"prepublishOnly": "npm run ci",
"test-db": "fibjs test/run-db",
"test-db-mysql": "cross-env URI=mysql://root:@localhost:3306/db-driver npm run test-db"
},

@@ -32,11 +35,12 @@ "engines": {

"dependencies": {
"@fxjs/orm-core": "^0.1.0",
"parse-querystring-dotkey": "^1.0.3"
},
"devDependencies": {
"@fibjs/types": "^0.27.1",
"@fxjs/knex": "^0.1.1",
"@fibjs/types": "^0.31.0",
"@fxjs/knex": "^0.3.0",
"cross-env": "^5.2.0",
"fib-pool": "^1.6.0",
"fib-rollup": "^0.4.0",
"fib-typify": "^0.6.0",
"knex": "^0.16.5",
"fib-typify": "^0.8.3",
"rollup-plugin-commonjs": "^9.2.1",

@@ -51,12 +55,18 @@ "should": "^13.2.3"

"version": [
"0.21.0",
"0.22.0",
"0.23.0",
"0.24.0",
"0.25.0",
"0.26.0",
"0.26.1",
"0.27.0"
"0.28.0",
"0.29.0",
"0.30.0",
"0.31.0"
]
}
},
"private": false,
"homepage": "https://github.com/fxjs-modules/orm/tree/master/packages/db-driver",
"files": [
"lib",
"typings"
],
"publishConfig": {
"access": "public"
},
"gitHead": "1c80cd6d5609c80e4ec66f17f56adf27acc4cc60"
}