UNPKG

shunter

Version:

A Node.js application built to read JSON and translate it into HTML

22 lines (17 loc) 289 B
'use strict'; var shunter = require('../../'); // eslint-disable-line unicorn/import-index var app = shunter({ path: { themes: __dirname }, routes: { localhost: { default: { host: '127.0.0.1', port: 5401 } } } }); app.start(); console.log('mock-app started');