UNPKG

preon

Version:

a smaller nodejs micro-service framework

16 lines (11 loc) 297 B
import PreonCore, { ApplicationOptions } from '@preon/core'; export interface Application extends Preon { } export default class Preon extends PreonCore { constructor(options?: Partial<ApplicationOptions>) { super(options); } get path() { return __dirname; } }