UNPKG

create-serve

Version:

🍛 Ultralight http server with live reload. [CLI + API]

14 lines (10 loc) 386 B
import { log, error, getIp } from './utils/index.js'; import { options } from './index.js'; const logMessage = currentPort => { const { port } = options; log('\nServing 🍛\n'); log(`Local → http://localhost:${currentPort}\n`); log(`Network → http://${getIp()}:${currentPort}\n`); if (currentPort != port) error(`Port ${port} was in use.\n`); }; export default logMessage;