Skip to content

fabrix-app/spool-plv8

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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