Code Monkey home page Code Monkey logo

hapi-sass's Introduction

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 --save
var Hapi = require('hapi');
var HapiSass = require('../index')

var server = new Hapi.Server();
server.connection({ port: 1337 });

var options = {
    src: './example/sass',
    dest: './example/css',
    force: true,
    debug: true,
    routePath: '/css/{file}.css',
    includePaths: ['./example/vendor/sass'],
    outputStyle: 'nested',
    sourceComments: true
};

server.register({
        register: HapiSass,
        options: options
    }
    , function (err) {
        if (err) throw err;
        server.start(function () {
            server.log("Hapi server started @ " + server.info.uri);
        });
    }
);

Options:

  • debug: used to print statements to the console. Defaults to false
  • force: forces re-compilation for every request. Defaults to false
  • src: the directory to find the requested .sass file. Defaults to ./lib/sass
  • dest: the destination directory to write compiled .css files. Defaults to ./public/css
  • routePath: 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 to compressed
  • sourceComments: parameter for node-sass. Defaults to false.
  • includePaths: parameter for node-sass. Defaults to [].

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.