hugla-http

0.1.1 • Public • Published

HuglaHttp

Hugla web framework's node back-end http module

Build Status Coverage Status

Requirements

The following configuration properties are required

{
  "appDir": "./app"
}

Options

The following configuration properties are optional

{
  "host": "localhost",
  "port": "8080",
  "viewEngine": "jade",
  "assets": {
    "/assets": "assets"
  },
  "controllers": [
    {
      "name": "index",
      "root": "/"
    }
  ]
}

Plugging in

In case you need some middleware to be added to express' middleware chain use .addMiddlewareSetupAction() method on HuglaHttp class instance, providing a function that needs to be called during middleware setup process. That method will called with express app argument, that you can use to attach your middleware. .addMiddlewareSetupAction() method needs to be called before .setup() is called for HuglaHttp class instance, as middleware setup process happens during .setup() method execution.

Middleware setup action will also receive node's http server as second argument.

Example

 
const HuglaHttp = require('HuglaHttp');
const bodyParser = require('body-parser');
 
...
 
huglaHttp.addMiddlewareSetupAction(function(app, http) {
  app.use(bodyParser.urlencoded({ extended: false }));
  app.use(bodyParser.json());
});
 
huglaHttp.setup(...);
huglaHttp.run(...);
 

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i hugla-http

Weekly Downloads

1

Version

0.1.1

License

MIT

Last publish

Collaborators

  • noosxe