UNPKG

okam-build

Version:

The build tool for Okam develop framework

20 lines (14 loc) 351 B
/** * @file Dev server based on express * @author sparklewhy@gmail.com */ 'use strict'; const ServerBase = require('./ServerBase'); class ExpressServer extends ServerBase { constructor(options) { super(options); let express = this.serverType; this.app = express(); } } module.exports = exports = ExpressServer;