https://github.com/cyanchanges/sidroc
an AOP framework for legacy JavaScript applications.
https://github.com/cyanchanges/sidroc
Last synced: about 1 year ago
JSON representation
an AOP framework for legacy JavaScript applications.
- Host: GitHub
- URL: https://github.com/cyanchanges/sidroc
- Owner: CyanChanges
- Created: 2023-07-17T10:14:28.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-12T11:24:26.000Z (over 2 years ago)
- Last Synced: 2025-05-09T00:16:47.631Z (about 1 year ago)
- Language: TypeScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sidroc




Are you looking for [Cordis](https://github.com/cordiverse/cordis) ?
Sidroc is an AOP framework for legacy JavaScript applications. You can think of it as a kind of april-fools-day-framework as developers can build their own frameworks on top of it.
```ts
import { Context } from 'sidroc'
const ctx = new Context()
ctx.plugin(plugin) // use plugins
ctx.on(event, callback) // listen to events
ctx.start() // start app
```