Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
mkr-postgresjs
Advanced tools
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
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"]);
FAQs
**** #### Get start
The npm package mkr-postgresjs receives a total of 6 weekly downloads. As such, mkr-postgresjs popularity was classified as not popular.
We found that mkr-postgresjs demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.