Skip to content
/ AOP Public

A library that aims to provide "something" like Aspect Oriented Programming for Javascript.

License

Notifications You must be signed in to change notification settings

mallocator/AOP

Repository files navigation

AOP - Aspect Oriented Programming

Well, kind off... not really though.

This library aims to provide aspect oriented programming features to javascript.

How to use

Here's a simple example:

import AOP          from '@mallocator/aop'
import EventEmitter from 'events'

AOP.beforeMethods(EventEmitter, (_, args) => {
  console.log('Fired Event Args: ' + args)
}, 'emit');

API

todo

About

A library that aims to provide "something" like Aspect Oriented Programming for Javascript.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published