New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cordis

Package Overview
Dependencies
Maintainers
1
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordis

AOP Framework for Modern JavaScript Applications

  • 2.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.3K
increased by3%
Maintainers
1
Weekly downloads
 
Created
Source

Cordis

Codecov downloads npm GitHub

AOP Framework for Modern JavaScript Applications.

import { Context } from 'cordis'

const ctx = new Context()

ctx.plugin(plugin)              // use plugins
ctx.on(event, callback)         // listen to events

ctx.start()                     // start app

Concepts

Context

Contexts provide three kinds of functionality:

  • allowing access to services (service container)
  • managing states of plugins (plugin context)
  • filtering sessions for events (session context)

Plugin

Service

Events

API

Context

ctx.extend(meta)
  • meta: Partial<Context.Meta> additional properties
  • returns: Context

Create a new context with the current context as the prototype. Properties specified in meta will be assigned to the new context.

ctx.isolate(keys)
  • keys: string[] service names
  • returns: Context

Create a new context with the current context as the prototype. Services included in keys will be isolated in the new context, while services not included in keys are still shared with the parent context.

const root = new Context()
const ctx1 = root.isolate(['foo'])
const ctx2 = root.isolate(['bar'])

root.foo = { value: 1 }
ctx1.foo                        // undefined
ctx2.foo                        // { value: 1 }

ctx1.bar = { value: 2 }
root.bar                        // { value: 2 }
ctx2.bar                        // undefined

Lifecycle

ctx.lifecycle is a built-in service which provides event-related functionality. Most of its methods are also directly accessible in the context.

ctx.emit(thisArg?, event, ...param)
  • thisArg: object binding object
  • event: string event name
  • param: any[] event parameters
  • returns: void

Trigger the event called event, calling all associated listeners synchronously at the same time, passing the supplied arguments to each. If the first argument is an object, it will be used as this when executing each listener.

ctx.parallel(thisArg?, event, ...param)
  • thisArg: object binding object
  • event: string event name
  • param: any[] event parameters
  • returns: Promise<void>

Trigger the event called event, calling all associated listeners asynchronously at the same time, passing the supplied arguments to each. If the first argument is an object, it will be used as this when executing each listener.

ctx.bail(thisArg?, event, ...param)
  • thisArg: object binding object
  • event: string event name
  • param: any[] event parameters
  • returns: any

Trigger the event called event, calling all associated listeners synchronously in the order they were registered, passing the supplied arguments to each. If the first argument is an object, it will be used as this when executing each listener.

If any listener returns a value other than false, null or undefined, that value is returned. If all listeners return false, null or undefined, an undefined is returned. In either case, subsequent listeners will not be called.

ctx.serial(thisArg?, event, ...param)
  • thisArg: object binding object
  • event: string event name
  • param: any[] event parameters
  • returns: Promise<any>

Trigger the event called event, calling all associated listeners asynchronously in the order they were registered, passing the supplied arguments to each. If the first argument is an object, it will be used as this when executing each listener.

If any listener is fulfilled with a value other than false, null or undefined, the returned promise is fulfilled with that value. If all listeners are fulfilled with false, null or undefined, the returned promise is fulfilled with undefined. In either case, subsequent listeners will not be called.

ctx.on()
ctx.once()
ctx.off()
ctx.lifecycle.start()
ctx.lifecycle.stop()
ctx.lifecycle.register()
ctx.lifecycle.unregister()

Registry

ctx.registry is a built-in service which provides plugin-related functionality. It is actually a subclass of Map<Plugin, Runtime>, so you can access plugin runtime via methods like ctx.registry.get() and ctx.registry.delete().

ctx.plugin(plugin, config?)
  • plugin: object the plugin to apply
  • config: object config for the plugin
  • returns: Fork

Apply a plugin.

ctx.using(names, callback)
  • names: string[] service names
  • callback: Function plugin function

A syntax sugar of below code:

ctx.plugin({
  using: names,
  plugin: callback,
})

State

State can be accessed via ctx.state or passed in in some events.

state.uid
  • type: number

An auto-incrementing unique identifier for the state.

state.runtime

The plugin runtime associated with the state. If the state is a runtime, then this property refers to itself.

state.parent
state.context
state.config
state.collect()
state.restart()
state.update()
state.dispose()

Fork

Runtime

Runtime is a subclass of State, representing the runtime state of a plugin.

It can be accessed via ctx.runtime or passed in in some events.

runtime.name
runtime.plugin
runtime.children
runtime.isForkable

Events

ready()

The ready event is triggered when the lifecycle starts. If a ready listener is registered in a lifecycle that has already started, it will be called immediately.

It is recommended to wrap code in the ready event in the following scenarios:

  • contains asynchronous operations (for example IO-intensive tasks)
  • should be called after other plugins are ready (for exmaple performance checks)
dispose()
fork(ctx, config)
  • ctx: Context
  • config: any
internal/warning(...param)
  • param: any[]
internal/hook(name, listener, prepend)
  • name: string
  • listener: Function
  • prepend: boolean
  • returns: () => boolean
internal/service(name)
  • name: string
  • oldValue: any
internal/runtime(runtime)
  • runtime: Runtime
internal/fork(fork)
  • fork: Fork
internal/update(fork, config)
  • fork: Fork
  • config: any

FAQs

Package last updated on 13 Aug 2022

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