Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(tsyringe): add @hono/tsyringe middleware #785

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/eleven-islands-jump.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hono/tsyringe': minor
---

add tsyringe middleware support
25 changes: 25 additions & 0 deletions .github/workflows/ci-tsyringe.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: ci-tsyringe
on:
push:
branches: [main]
paths:
- 'packages/tsyringe/**'
pull_request:
branches: ['*']
paths:
- 'packages/tsyringe/**'

jobs:
ci:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/tsyringe
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test
42 changes: 42 additions & 0 deletions packages/tsyringe/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# tsyringe middleware for Hono

The [tsyringe](https://github.com/microsoft/tsyringe) middleware provides a way to use dependency injection in [Hono](https://hono.dev/).

## Usage

```ts
import "reflect-metadata" // tsyringe requires reflect-metadata or polyfill
import { container, inject, injectable } from 'tsyringe'
import { tsyringe } from '@hono/tsyringe'
import { Hono } from 'hono'

@injectable()
class Hello {
constructor(@inject('name') private name: string) {}

greet() {
return `Hello, ${this.name}!`
}
}

const app = new Hono()

app.use('*', tsyringe((c, container) => {
container.register('name', { useValue: 'world' })
}))

app.get('/', (c) => {
const hello = container.resolve(Hello)
return c.text(hello.greet())
})

export default app
```

## Author

Aotokitsuruya <https://github.com/elct9620>

## License

MIT
51 changes: 51 additions & 0 deletions packages/tsyringe/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"name": "@hono/tsyringe",
"version": "0.1.0",
"description": "The tsyringe dependency injection middleware for Hono",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest --run",
"build": "tsup ./src/index.ts --format esm,cjs --dts",
"publint": "publint",
"release": "yarn build && yarn test && yarn publint && yarn publish"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/honojs/middleware.git"
},
"homepage": "https://github.com/honojs/middleware",
"peerDependencies": {
"hono": ">=4.*",
"tsyringe": ">=4.*"
},
"devDependencies": {
"hono": "^4.4.12",
"prettier": "^3.3.3",
"reflect-metadata": "^0.2.2",
"tsup": "^8.1.0",
"tsyringe": "^4.8.0",
"vitest": "^1.6.0"
}
}
58 changes: 58 additions & 0 deletions packages/tsyringe/src/index.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
import 'reflect-metadata'
import { injectable, inject } from 'tsyringe'
import { Hono } from 'hono'
import { tsyringe } from '../src'

class Config {
constructor(public readonly tenantName: string) {}
}

@injectable()
class TenantService {
constructor(@inject(Config) public readonly config: Config) {}

get message() {
return `Hello, ${this.config.tenantName}!`
}
}

describe('tsyringe middleware', () => {
const app = new Hono()

app.use(
'/hello/*',
tsyringe((_ctx, container) => container.register('foo', { useValue: 'Hello!' }))
)
app.get('/hello/foo', (c) => {
const message = c.var.resolve<string>('foo')
return c.text(message)
})

app.use(
'/tenant/:name/*',
tsyringe((c, container) => {
const tenantName = c.req.param('name')

container.register(Config, { useFactory: () => new Config(tenantName) })
})
)

app.get('/tenant/:name/message', (c) => {
const tenantService = c.var.resolve(TenantService)
return c.text(tenantService.message)
})

it('Should be hello message', async () => {
const res = await app.request('http://localhost/hello/foo')
expect(res).not.toBeNull()
expect(res.status).toBe(200)
expect(await res.text()).toBe('Hello!')
})

it('Should be tenant message', async () => {
const res = await app.request('http://localhost/tenant/foo/message')
expect(res).not.toBeNull()
expect(res.status).toBe(200)
expect(await res.text()).toBe('Hello, foo!')
})
})
19 changes: 19 additions & 0 deletions packages/tsyringe/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { container, DependencyContainer, InjectionToken } from 'tsyringe'
import type { Context, MiddlewareHandler } from 'hono'
import { createMiddleware } from 'hono/factory'

declare module 'hono' {
interface ContextVariableMap {
resolve: <T>(token: InjectionToken<T>) => T
}
}

export type Provider = (c: Context, container: DependencyContainer) => void
export const tsyringe = (...providers: Provider[]): MiddlewareHandler => {
return createMiddleware(async (c, next) => {
const childContainer = container.createChildContainer()
providers.forEach((provider) => provider(c, childContainer))
c.set('resolve', <T>(token: InjectionToken<T>) => childContainer.resolve(token))
await next()
})
}
12 changes: 12 additions & 0 deletions packages/tsyringe/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": [
"src/**/*.ts"
],
}
8 changes: 8 additions & 0 deletions packages/tsyringe/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/// <reference types="vitest" />
import { defineConfig } from 'vitest/config'

export default defineConfig({
test: {
globals: true,
},
})
43 changes: 42 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2652,6 +2652,22 @@ __metadata:
languageName: unknown
linkType: soft

"@hono/tsyringe@workspace:packages/tsyringe":
version: 0.0.0-use.local
resolution: "@hono/tsyringe@workspace:packages/tsyringe"
dependencies:
hono: "npm:^4.4.12"
prettier: "npm:^3.3.3"
reflect-metadata: "npm:^0.2.2"
tsup: "npm:^8.1.0"
tsyringe: "npm:^4.8.0"
vitest: "npm:^1.6.0"
peerDependencies:
hono: ">=4.*"
tsyringe: ">=4.*"
languageName: unknown
linkType: soft

"@hono/typebox-validator@workspace:packages/typebox-validator":
version: 0.0.0-use.local
resolution: "@hono/typebox-validator@workspace:packages/typebox-validator"
Expand Down Expand Up @@ -16305,6 +16321,15 @@ __metadata:
languageName: node
linkType: hard

"prettier@npm:^3.3.3":
version: 3.3.3
resolution: "prettier@npm:3.3.3"
bin:
prettier: bin/prettier.cjs
checksum: b85828b08e7505716324e4245549b9205c0cacb25342a030ba8885aba2039a115dbcf75a0b7ca3b37bc9d101ee61fab8113fc69ca3359f2a226f1ecc07ad2e26
languageName: node
linkType: hard

"pretty-format@npm:^28.0.0, pretty-format@npm:^28.1.3":
version: 28.1.3
resolution: "pretty-format@npm:28.1.3"
Expand Down Expand Up @@ -16840,6 +16865,13 @@ __metadata:
languageName: node
linkType: hard

"reflect-metadata@npm:^0.2.2":
version: 0.2.2
resolution: "reflect-metadata@npm:0.2.2"
checksum: 1cd93a15ea291e420204955544637c264c216e7aac527470e393d54b4bb075f10a17e60d8168ec96600c7e0b9fcc0cb0bb6e91c3fbf5b0d8c9056f04e6ac1ec2
languageName: node
linkType: hard

"regenerator-runtime@npm:^0.14.0":
version: 0.14.1
resolution: "regenerator-runtime@npm:0.14.1"
Expand Down Expand Up @@ -18904,7 +18936,7 @@ __metadata:
languageName: node
linkType: hard

"tslib@npm:^1.8.1, tslib@npm:^1.9.0":
"tslib@npm:^1.8.1, tslib@npm:^1.9.0, tslib@npm:^1.9.3":
version: 1.14.1
resolution: "tslib@npm:1.14.1"
checksum: 69ae09c49eea644bc5ebe1bca4fa4cc2c82b7b3e02f43b84bd891504edf66dbc6b2ec0eef31a957042de2269139e4acff911e6d186a258fb14069cd7f6febce2
Expand Down Expand Up @@ -19171,6 +19203,15 @@ __metadata:
languageName: node
linkType: hard

"tsyringe@npm:^4.8.0":
version: 4.8.0
resolution: "tsyringe@npm:4.8.0"
dependencies:
tslib: "npm:^1.9.3"
checksum: e13810e8ff39c4093acd0649bc5db3c164825827631e1522cd9d5ca8694a018447fa1c24f059ea54e93b1020767b1131b9dc9ce598dabfc9aa41c11544bbfe19
languageName: node
linkType: hard

"tty-table@npm:^4.1.5":
version: 4.2.3
resolution: "tty-table@npm:4.2.3"
Expand Down