Socket
Socket
Sign inDemoInstall

hugla-http

Package Overview
Dependencies
41
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hugla-http

hugla web framework's node back-end http module


Version published
Weekly downloads
9
increased by800%
Maintainers
1
Install size
0.977 MB
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 05 Nov 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc