I am creating a node.js app with Express and socket.io. I want to use SASS and I see there is a npm package for it, what I don\'t understand is how do I link between the SAS
Looks like implementation has changed a bit for Express. I had to do this instead:
npm install node-sass-middleware --save
then
var sass = require('node-sass-middleware'); app.use( sass({ src: __dirname + '/sass', // Input SASS files dest: __dirname + '/public', // Output CSS debug: true }) );