Socket
Socket
Sign inDemoInstall

funky-mysql

Package Overview
Dependencies
24
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    funky-mysql

Funky mysql used for mysql DB access


Version published
Weekly downloads
6
increased by20%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

funky-mysql

Funky mysql used for mysql DB access.

Installation

Run below command to install funky-mysql.

npm install funky-mysql

Usage

const funkymysql = require('funky-mysql')
var db = new funkymysql({
    host:'localhost', // Your Hostname or Host IP
    user:'root',      // Username of database
    password:'',      // Password of database 
    database:'mysql'  // Name of Database  
})

var result = db.get('help_category')
console.log(result)

Output

[ { help_category_id: 1,
    name: 'Geographic',
    parent_category_id: 0,
    url: '' },
  { help_category_id: 2,
    name: 'Polygon properties',
    parent_category_id: 35,
    url: '' }
            .
            .
            .
            .
            .
  { help_category_id: 40,
    name: 'Data Definition',
    parent_category_id: 36,
    url: '' } ]

Big Thanks

Our sincere thanks to sync-mysql

Keywords

FAQs

Last updated on 12 Feb 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc