hapikachu

0.0.1-beta • Public • Published

hapikachu

Asset management for Hapi

Getting Started

Install hapikachu by either running npm install hapikachu in your sites working directory or add 'hapikachu' to the dependencies section of the 'package.json' file and run npm install. Hapikachu is under development and is not yet ready for production.

Required permissions

hapikachu require route permissions to be granted on the server.

What you get

In your route handlers :

handler: function () {
  this.assets.addJavascript(
    "alert('Hello world!');", 'inline'
  );
}

In your templates :

  <%- assets.css %>
  <%- assets.js %>

Available options

hapikachu: {
  basePath: '/path/to/my/js/and/css/files',
  assets: {
    js: [
      '//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.2/jquery.min.js',
      '/public/js/vendor/jquery-ui-1.10.3.custom.min.js',
      '/public/js/vendor/bootstrap.min.js',
      '/public/js/custom/main.js'
    ],
    css: [
      {
        type: 'less',
        path:  '/less/',
        file: 'main.less'
      }
    ]
  }
}

Readme

Keywords

none

Package Sidebar

Install

npm i hapikachu

Weekly Downloads

1

Version

0.0.1-beta

License

none

Last publish

Collaborators

  • gpierret