1.1.0-alpha.1 • Published 6 years ago

@fabrix/spool-plv8 v1.1.0-alpha.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

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.database.stores
   */
  store: 'some-plv8-store'
}

License

MIT