hapi-sass
A Hapi.js plugin for compiling and serving Sass stylesheets using node-sass. This is a port of their express middleware to a hapi.js plugin.
Overview
This plugin will create a single (configurable) route on the server that will respond to requests for css files.
The plugin will map the request to a sass file in the configured src directory. The plugin will then try to just serve an existing, compiled .css file in the configured dest directory. If the file does not exist, or is older than the sass file, it will re-compile, write the file back to disk and respond with the contents back to the requestor.
Example usage:
$ npm install hapi-sass --saveconst Hapi = require("hapi");
const HapiSass = require("../index");
const Inert = require("inert");
const server = new Hapi.Server({ port: 3000, host: "localhost" });
const options = {
src: "./sass",
dest: "./css",
force: true,
debug: true,
routePath: "/css/{file}.css",
includePaths: ["./vendor/sass"],
outputStyle: "nested",
sourceComments: true,
functions: require("./functions"),
srcExtension: "sass"
};
const init = async () => {
await server.register([
Inert,
{
plugin: HapiSass,
options: options
}
]);
await server.start();
console.log(`Server running at: ${server.info.uri}`);
};
process.on("unhandledRejection", err => {
console.log(err);
process.exit(1);
});
init();See the example/ folder for more.
Options:
debug: used to print statements to the console. Defaults tofalseforce: forces re-compilation for every request. Defaults tofalsesrc: the directory to find the requested.sassfile. Defaults to./lib/sasssrcExtension: the extension of the requested.sassfile. Defaults toscssdest: the destination directory to write compiled.cssfiles. Defaults to./public/cssroutePath: the route to register with hapijs. Defaults to/css/{file}.css. The{file}portion of the string is currently significant. It's used as a request parameter.outputStyle: parameter for node-sass. Defaults tocompressedsourceComments: parameter for node-sass. Defaults tofalse.functions: parameter for node-sass to support custom functions. Defaults to an empty object.includePaths: parameter for node-sass. Defaults to[].

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
