UNPKG

devlien

Version:

Devlien is a lightweight, zero-dependency Node.js framework with clean MVC structure, built-in ORM, and intuitive routing for rapid backend development.

13 lines (12 loc) 316 B
const colours = { success : '\x1b[32m%s\x1b[0m', warning : '\x1b[33m%s\x1b[0m', error : '\x1b[31m%s\x1b[0m', info : '\x1b[36m%s\x1b[0m', secondary : '\x1b[36m%s\x1b[0m', // text:(text, type='info')=>{ return colours[type]?.replace('%s', text) } } export default colours;