mono-postgres
v0.0.1
Published
PostreSQL module for Mono
Downloads
2
Readme
mono-postgres
PostreSQL module for Mono
Installation
npm install --save mono-postgres
Then, in your configuration file of your Mono application (example: conf/application.js
):
module.exports = {
mono: {
modules: ['mono-postgres']
}
}
Configuration
mono-postgres
will use the mono.postgres
property of your configuration (example: conf/development.js
):
module.exports = {
mono: {
postgres: {
/* Module options */
}
}
}
Usage
In your src/
files of your Mono project, you can access hello
like this:
const { hello } = require('mono-postgres')
hello()
Development / Contribution
See the contribution guidelines of this project.
License
Apache-2.0 © AdminLP