
Research
/Security News
Popular Tinycolor npm Package Compromised in Supply Chain Attack Affecting 40+ Packages
Malicious update to @ctrl/tinycolor on npm is part of a supply-chain attack hitting 40+ packages across maintainers
grunt-generate-database
Advanced tools
Репозиторий, который хранит в себе плагин для создания 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
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.
Research
/Security News
Malicious update to @ctrl/tinycolor on npm is part of a supply-chain attack hitting 40+ packages across maintainers
Security News
pnpm's new minimumReleaseAge setting delays package updates to prevent supply chain attacks, with other tools like Taze and NCU following suit.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.