
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
grunt-generate-database
Advanced tools
CLI for generate typeorm wrappers for postgreSQL and MsSQL
Репозиторий, который хранит в себе плагин для создания DBWrapper, триггера и функции управления триггером с помощью typeorm и postgres
npm install grunt-generate-database
[
{
"db": "postgres",
"name" : "base1",
"dbtype" : "dbtype1",
"dbhost" : "dbhost1",
"dbport" : "dbport1",
"dbusername" : "dbusername1",
"dbpassword" : "dbpassword1",
"dbdatabase" : "dbdatabase1",
"pathToDBWrappers": "./dbscript",
"schemas" :
[
{
"namespace": "testnamespace",
"recreate":true,
"tables":
[
{
"name": "Class",
"pathToModel": "./models/class"
}
]
}
]
}
]
import {Column, Entity, PrimaryGeneratedColumn} from "typeorm";
import { GenerateHistory } from "grunt-generate-history-model";
@Entity()
@GenerateHistory({"historyPath": "./test/src/model/hero"})
export class Hero {
@PrimaryGeneratedColumn()
public id?: number;
@Column()
public name: string;
public data: string;
@Column()
public detailId?: number;
@Column({"type": "integer", "array": true, "nullable": true})
public simpleArray: number[];
}
"scripts": {
"generation": "generateDatabase"
}
где "generateDatabase" - строка для запуска плагина
npm run generation
после завершения работы плагина по пути, указанному в declaration.json в свойстве "pathToDBWrappers", появятся файлы с расширением ".ts" :
import { Class } from '../../../models/class';
import { createbase1TriggerFuncstestnamespace } from './function';
import { createbase1Triggerstestnamespace } from './trigger';
import * as dotenv from 'dotenv';
import {createConnection, Connection, getManager, EntityManager} from 'typeorm';
export class testnamespaceDBWrapper {
private static connection: Connection;
public static async initialize(dropSchema?: boolean, sync?: boolean): Promise<void> {
await this.close();
if (! dropSchema) {
dropSchema = false;
}
if (! sync) {
sync = false;
}
this.connection = await this.createTables(dropSchema, sync);
if (dropSchema) {
await createbase1TriggerFuncstestnamespace();
await createbase1Triggerstestnamespace();
}
}
private static async createTables(dropSchema?: boolean, sync?: boolean) {
return await createConnection({
name: 'testnamespace',
type: 'postgres',
replication: {
master: {
host: process.env.dbhost1,
port: parseInt(process.env.dbport1, 10),
username: process.env.dbusername1,
password: process.env.dbpassword1,
database: process.env.dbdatabase1
},
slaves: []
},
entities: [
Class
],
schema: 'testnamespace',
synchronize: sync,
dropSchema: dropSchema
});
}
public static getEntityManager (): EntityManager {
return getManager('testnamespace');
}
public static async close(): Promise<void> {
if (this.connection) {
await this.connection.close();
this.connection = null;
}
}
}
import {createConnection, ConnectionOptions} from 'typeorm';
export async function createbase1TriggerFuncstestnamespace() {
const pgp = require('pg-promise')({});
await pgp.end();
const connectionString = 'postgres://' + process.env.dbusername1 + ':' +
process.env.dbpassword1 + '@' + process.env.dbhost1 + ':' + process.env.dbport1 + '/' + process.env.dbdatabase1;
const db = pgp(connectionString);
let queryproc = '';
pgp.end();
}
import {createConnection, ConnectionOptions} from 'typeorm';
export async function createbase1Triggerstestnamespace() {
const pgp = require('pg-promise')({});
await pgp.end();
const connectionString = 'postgres://' + process.env.dbusername1 + ':' +
process.env.dbpassword1 + '@' + process.env.dbhost1 + ':' + process.env.dbport1 + '/' + process.env.dbdatabase1;
const db = pgp(connectionString);
let queryproc;
let lowerStringName;
let lowewrStringSchema;
pgp.end();
}
FAQs
CLI for generate typeorm wrappers for postgreSQL and MsSQL
The npm package grunt-generate-database receives a total of 15 weekly downloads. As such, grunt-generate-database popularity was classified as not popular.
We found that grunt-generate-database demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.