New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hapi-myconnection

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

hapi-myconnection

MySql plugin for Hapi

  • 0.0.10
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

hapi-myconnection

Wrap Hapi requests with access to a Mysql connection from pool.

It gives you access to request.connection within your handlers which you can then use to make Mysql requests. It also releases the connection to the pool after the request.

Usage


// options used to pass mysql driver to create pool
var mysqlOptions = {
  host: 'localhost',
  user: 'anyUser'
};

server.pack.register({
  plugin: require('hapi-myconnection'),
  options: {
    mysql: mysql,
    mysqlOptions: {
      host: 'localhost',
      user: 'root',
      password: 'root'
    }
  }
}, function(err) {
  throw err;
});

License

MIT

Keywords

FAQs

Package last updated on 24 Sep 2014

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