Skip to content

Latest commit

 

History

History
executable file
·
57 lines (48 loc) · 1.78 KB

README.md

File metadata and controls

executable file
·
57 lines (48 loc) · 1.78 KB

spool-plv8

Gitter NPM version Build Status Test Coverage Dependency Status Follow @FabrixApp on Twitter

require() and execute nodejs code in Postgres with PLV8 and Fabrix. Depends on spool-knex.

Install

$ npm install --save @fabrix/spool-plv8

Configure

// config/main.ts
import { PLV8Spool } from '@fabrix/spool-plv8'
import { KnexSpool } from '@fabrix/spool-knex'
export const main = {
  spools: [
    // ... other spools
    KnexSpool,
    PLV8Spool
  ]
}
// config/plv8.ts
export const plv8 = {
  /**
   * The name of the database store to use; must be defined in config.stores
   */
  store: 'some-plv8-store'
}

License

MIT