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

mkr-postgresjs

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mkr-postgresjs

**** #### Get start

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
6
increased by200%
Maintainers
1
Weekly downloads
 
Created
Source

Postgresql is a small library to simplify working with the postgresql database

This package was created using the pg package!

Get start

Create connection

import {Connection, Table} from "postgresjs";

const config {
    host: "host",
    port: "port",
    user: "user",
    password: "password",
    database: "database"
}

const connection = new Connection(config);

For better work, I advise you to create 1 type with column names and 1 interface with column values.

interface iUser{
    id?: string; // {?} - if the column is autoincrement 
    username: string;
    email: string;
    password: string;
}

type tUser = "id" | "username" | "email" | "password";

Now let's connect to the table

// For each table, create an instance of that table's class
const usersTable = new Table<iUser, tUser>(connection, "users");
const carsTable  = new Table<iCars, tCar>(connection, "cars");

Select all rows or a specific row

// Select all
userTable.selectAll().then(data => console.log(data));
// sort
const sort = {
    by: "id",
    type: "ASC"
}
userTable.selectAll(sort).then(data => console.log(data));

// Select row
userTable.selectRow("id", 5).then(data => console.log(data));

Delete all rows or a specific row

// Delete all
userTable.deleteAll();
// Delete row
userTable.delete("id", 5);

Update row

const columns = ["username", "email"];
const values  = ["alex", "alex@example.com"];
conste updateCol = {
    column: "id",
    value: 5
}
userTable.update(columns, values, updateCol);
userTable.update("username", "alex", updateCol);

Drop table

ATTENTION!!! THIS METHOD DELEtypescript THE TABLE, NOT THE ROWS!!!
userTable.drop();

Create table

const tableData = {
     tableName: "new table name",
     owner: "username",
     columns: [
         {
             name: "id",
             type: "bigint",
             isAutoincrement: true,
             isPrimarry: true,
         },
         {
             name: "userData",
             type: "text",
             isNull: true,
             isArray: true
         },
         ...
     ]
 }
     * 
myTable.createTable(tableData);

Custom querry

myTable.custom("SELECT * FROM users");
myTable.custom("INSERT INTO users (username, email) VALUES $1, $2", ["username", "useremail"]);

Keywords

FAQs

Package last updated on 22 Feb 2024

Did you know?

Socket

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.

Install

Related posts

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