Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ingress/ingress

an application runtime for building composable javascript applications
https://github.com/ingress/ingress

application-framework javascript middleware node-js nodejs typescript

Last synced: 3 months ago
JSON representation

an application runtime for building composable javascript applications

Awesome Lists containing this project

README

        




ingress logo



install: npm i ingress

a utility for building applications using TypeScript or JavaScript

Ingress CI
Version
License

## Getting started (web):

```typescript
//@filename: app.ts
import ingress, { Route } from "ingress";

class MyController {
@Route.Get("/greet/:name")
greeting(@Route.Param("name") name: string) {
return `Hello ${name}`
}
}

export const app = ingress(MyController)

//@filename: package.json
{
"scripts": {
"start": "ing start app.ts"
}
}
``