Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hugla-http

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hugla-http

hugla web framework's node back-end http module

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
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

Package last updated on 05 Nov 2015

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc