🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@casper124578/mysql.ts

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@casper124578/mysql.ts

A simple mysql wrapper for node.js

1.0.1
unpublished
latest
Source
npm
Version published
Maintainers
1
Created
Source

mysql.ts

npm size license maintained

A simple node.js MySQL wrapper made with TypeScript.

Installation

npm

npm i @casper124578/mysql.ts

Yarn

yarn add @casper124578/mysql.ts

Usage

import { createConnection } from "@casper124578/mysql.ts";

async function init() {
  const connection = await createConnection({
    /* options */
    /* see: https://github.com/mysqljs/mysql#connection-options */
  });

  // query something
  const results = await connection.query().select(["id", "name"]).from("books").exec();

  console.log(results);
}

TypeScript support

interface MyData {
  id: string;
  fist_name: string;
  last_name: string;
}

const connection = await createConnection({
  /* ... */
});

const books = await connection
  .query<MyData>()
  // will have types!
  .select(["last_name", "fist_name"])
  .from("books")
  // will have types!
  .where("last_name", "hello")
  // will have types!
  .order("last_name", "ASC")
  .exec();

This is not a full list of methods. Check the docs for a full list!

Documentation

Checkout the documentation here

More

  • Query
  • Connection

Example

You view check an example here

Keywords

mysql

FAQs

Package last updated on 02 Sep 2021

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