prorm API Reference
    Preparing search index...

    Interface BeanstalkdStoreOptions

    Connection options for BeanstalkdStore.

    interface BeanstalkdStoreOptions {
        host?: string;
        port?: number;
        client?: any;
    }
    Index
    host?: string

    Beanstalkd host. Defaults to '127.0.0.1'.

    port?: number

    Beanstalkd port. Defaults to 11300.

    client?: any

    A pre-built fivebeans client. When provided, connect() adopts it and does not require('fivebeans') — used for injecting a mock in tests.