0.1.1 • Published 9 years ago

hugla-http v0.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

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

0.1.1

9 years ago

0.1.0

9 years ago