Skip to content

Instantly share code, notes, and snippets.

View navneetsaluja's full-sized avatar

Navneet Saluja navneetsaluja

View GitHub Profile
static/css/components/buttonCta--js.less
13:7 ✖ Unexpected declaration-block-no-shorthand-property-overrides
shorthand
"background" after
"background-color"
20:7 ✖ Unexpected declaration-block-no-shorthand-property-overrides
shorthand
"background" after
"background-color"
const hostname = process.env.HOST;
const port = process.env.PORT;
app.use((req, res, next) => {
console.log(req.headers);
res.statusCode = 200;
res.setHeader('Content-Type', 'text/html');
res.end('<html><body><h1>This is an Express Server</h1></body></html>');
});