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

@aldojs/application

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

@aldojs/application

Generic application for Node.js projects

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

A generic application which uses internally a service container and a middleware dispatcher to handle any context object.

import { createApplication } from '@aldojs/application'

let app = createApplication()

// add a sum handler
app.use(({ a, b }) => a + b)

// handle the context
let result = app.handle({ a: 1, b: -1 })

Middlewares

Middlewares could be a common or an async function. please refer to @aldojs/middleware for more information on how middlewares are dispatched.

// Handler function signature
declare type Middleware = (ctx: Context, next: () => any) => any;

You can register as many middlewares as needed with the application's method .use(fn).

// to add a handler directly in the stack
app.use(middleware)

Context

The context is a plain object, containing all data needed by the middlewares to do their job. A proxied version is passed to the middleware chain, instead of the original context object, to provide the same fields, in addition to the properties defined with .set(key, value) or .bind(key, factory) methods. In other, you can access the services registered within the application, directly in the middlewares

declare interface Context {
  [key: string]: any;
}

You may use Application::set(key, instance) to share instances between contexts, like a DB connection or a global logger.

import Mongoose from 'mongoose'

// set up the mongon db connection
// let connection = ...

// register it within the context
app.set('db', connection)

You may also use .bind(key, fn) to bind per-context instances. This method takes the field name, and the factory function to create the service object on demand.

let options = {/* some session options */}

// a new instance of Session is `lazily` created for each context
app.bind('session', () => new Session(options))

.has(key) and .get(key) are aldo available to check the existence of a certain service or to get a previously defined one.

Keywords

FAQs

Package last updated on 12 Feb 2019

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