This package has been deprecated

Author message:

No longer supported. Use BigAl

postgresql-waterline-adapter

1.0.8 • Public • Published

PostgreSQL Waterline Adapter

NPM version Known Vulnerabilities

A bare-bones Waterline adapter for PostgreSQL. It does not support schema creation/modification or streaming data.

Compatibility

  • Waterline v0.12.x
  • PostgreSQL 9.6.x

Install

$ npm install postgres-waterline-adapter

Configuration

config/connections.js

module.exports.connections = {
  // ...
  postgres: {
    connection: {
      database: 'databaseName',
      host: 'localhost',
      user: 'user',
      password: 'password',
      port: 5432,
      ssl: false
    },
  },
  // Or use a url string
  postgres: {
    connection: {
      url: 'postgresql://user:password@localhost:5432/databaseName?ssl=false',
    },
  }
}

License

MIT

Package Sidebar

Install

npm i postgresql-waterline-adapter

Weekly Downloads

8

Version

1.0.8

License

MIT

Last publish

Collaborators

  • jgeurts