2017-07-31 11:33:31 +05:30

16 lines
295 B
JavaScript

const express = require('express')
const app = express()
const stylus = require('stylus')
const debug = require('debug')('my-app')
app.get('/some.css', (req, res) => {
debug('css requested')
const css = stylus(`
body
color:black
`).render()
res.send(css)
})
app.listen(3000)