{}
Whether to add additional helper routes such as the test route at the root.
helperRoutes?: boolean
The host name the root application is available under.
hostName: string
Options to pass to the logger.
logger?: Partial<LoggerOptions>
The path your listener is mounted under.
pathPrefix?: string
Your EventSub secret.
secret: string
Whether to ignore packets that are not sent with a Host header matching the configured host name.
strictHostCheck?: boolean
Whether the path prefix will added to the mount point. Defaults to `true`.
usePathPrefixInHandlers?: boolean
Properties
helperRoutes
Type: ?boolean
Whether to add additional helper routes such as the test route at the root.
Enabled by default. Set this to false
to disable it.
secret
Type: string
Your EventSub secret.
This should be a randomly generated string, but it should be the same between restarts.
WARNING: Please do not use your application's client secret!
strictHostCheck
Type: ?boolean
Whether to ignore packets that are not sent with a Host header matching the configured host name.
Enabled by default. Set this to false
to disable it.