UNPKG

santi

Version:

Isomorphic framework for base on create-react-app and jsdom

16 lines (11 loc) 309 B
const { getConfig, getPort } = require('../../server') function run(runConfig = {}) { const cwd = process.cwd() const { port = getPort(3000), mode, ...config } = { ...getConfig(cwd), ...runConfig } const run = require(`./${mode}`) run(config, port) } module.exports = run