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(dev-server): supports Bun #119

Merged
merged 4 commits into from
Apr 12, 2024
Merged
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/tame-rabbits-cross.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hono/vite-dev-server': minor
---

feat: supports Bun
13 changes: 13 additions & 0 deletions .github/workflows/ci-dev-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,16 @@ jobs:
- run: yarn build
- run: npx playwright install --with-deps
- run: yarn test
ci-bun:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/dev-server
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: '1.0.25'
- run: bun install
- run: npx playwright install --with-deps
- run: bun run test:e2e:bun
70 changes: 70 additions & 0 deletions packages/dev-server/e2e-bun/e2e.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
import { test, expect } from '@playwright/test'

test('Should return 200 response', async ({ page }) => {
const response = await page.goto('/')
expect(response?.status()).toBe(200)

const headers = response?.headers() ?? {}
expect(headers['x-via']).toBe('vite')

const content = await page.textContent('h1')
expect(content).toBe('Hello Vite!')
})

test('Should contain an injected script tag', async ({ page }) => {
await page.goto('/')

const lastScriptTag = await page.$('script:last-of-type')
expect(lastScriptTag).not.toBeNull()

const content = await lastScriptTag?.textContent()
expect(content).toBe('import("/@vite/client")')
})

test('Should exclude the file specified in the config file', async ({ page }) => {
let response = await page.goto('/file.ts')
expect(response?.status()).toBe(404)

response = await page.goto('/ends-in-ts')
expect(response?.status()).toBe(200)

response = await page.goto('/app/foo')
expect(response?.status()).toBe(404)

response = await page.goto('/favicon.ico')
expect(response?.status()).toBe(404)

response = await page.goto('/static/foo.png')
expect(response?.status()).toBe(404)
})

test('Should return 200 response - /stream', async ({ page }) => {
const response = await page.goto('/stream')
expect(response?.status()).toBe(200)

const headers = response?.headers() ?? {}
expect(headers['x-via']).toBe('vite')

const content = await page.textContent('h1')
expect(content).toBe('Hello Vite!')
})

test('Should serve static files in `public/static`', async ({ page }) => {
const response = await page.goto('/static/hello.json')
expect(response?.status()).toBe(200)

const data = await response?.json()
expect(data['message']).toBe('Hello')
})

test('Should return a vite error page - /invalid-response', async ({ page }) => {
const response = await page.goto('/invalid-response')
expect(response?.status()).toBe(500)
expect(await response?.text()).toContain('ErrorOverlay')
})

test('Should set `workerd` as a runtime key', async ({ page }) => {
const res = await page.goto('/runtime')
expect(res?.ok()).toBe(true)
expect(await res?.text()).toBe('bun')
})
62 changes: 62 additions & 0 deletions packages/dev-server/e2e-bun/mock/app.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
import { Hono } from 'hono'
import { getRuntimeKey } from 'hono/adapter'

const app = new Hono()

app.get('/', (c) => {
c.header('x-via', 'vite')
return c.html('<h1>Hello Vite!</h1>')
})

app.get('/file.ts', (c) => {
return c.text('console.log("exclude me!")')
})

app.get('/app/foo', (c) => {
return c.html('<h1>exclude me!</h1>')
})

app.get('/ends-in-ts', (c) => {
return c.text('this should not be excluded')
})

app.get('/favicon.ico', (c) => {
return c.text('a good favicon')
})

app.get('/static/foo.png', (c) => {
return c.text('a good image')
})

app.get('/stream', () => {
const html = new TextEncoder().encode('<h1>Hello Vite!</h1>')
const stream = new ReadableStream({
start(controller) {
controller.enqueue(html)
controller.close()
},
})
return new Response(stream, {
headers: { 'Content-Type': 'text/html', 'x-via': 'vite' },
})
})

// @ts-expect-error the response is string
app.get('/invalid-response', () => {
return '<h1>Hello!</h1>'
})

app.get('/invalid-error-response', (c) => {
try {
// @ts-expect-error the variable does not exist, intentionally
doesNotExist = true

return c.html('<h1>Hello Vite!</h1>')
} catch (err) {
return err
}
})

app.get('/runtime', (c) => c.text(getRuntimeKey()))

export default app
24 changes: 24 additions & 0 deletions packages/dev-server/e2e-bun/playwright.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { defineConfig, devices } from '@playwright/test'

export default defineConfig({
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
use: {
baseURL: 'http://localhost:6173',
},
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
timeout: 5000,
retries: 2,
},
],
webServer: {
command: 'bun --bun vite --port 6173 -c ./vite.config.ts',
port: 6173,
reuseExistingServer: !process.env.CI,
},
})
3 changes: 3 additions & 0 deletions packages/dev-server/e2e-bun/public/static/hello.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"message": "Hello"
}
13 changes: 13 additions & 0 deletions packages/dev-server/e2e-bun/vite.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { defineConfig } from 'vite'
import devServer, { defaultOptions } from '../src'

export default defineConfig(async () => {
return {
plugins: [
devServer({
entry: './mock/app.ts',
exclude: [...defaultOptions.exclude, '/app/**'],
}),
],
}
})
5 changes: 3 additions & 2 deletions packages/dev-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
"module": "dist/index.js",
"type": "module",
"scripts": {
"test:unit": "vitest --run",
"test:unit": "vitest --run ./src",
"test:e2e": "playwright test -c e2e/playwright.config.ts e2e/e2e.test.ts",
"test:e2e:bun": "playwright test -c e2e-bun/playwright.config.ts e2e-bun/e2e.test.ts",
"test": "yarn test:unit && yarn test:e2e",
"build": "rimraf dist && tsup --format esm,cjs --dts && publint",
"watch": "tsup --watch",
Expand Down Expand Up @@ -82,7 +83,7 @@
"node": ">=18.14.1"
},
"dependencies": {
"@hono/node-server": "^1.8.2",
"@hono/node-server": "^1.10.0",
"miniflare": "^3.20231218.2",
"minimatch": "^9.0.3"
}
Expand Down
1 change: 1 addition & 0 deletions packages/dev-server/src/dev-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ export function devServer(options?: DevServerOptions): VitePlugin {
return response
},
{
overrideGlobalObjects: false,
errorHandler: (e) => {
let err: Error
if (e instanceof Error) {
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -950,10 +950,10 @@ __metadata:
languageName: node
linkType: hard

"@hono/node-server@npm:^1.8.2":
version: 1.8.2
resolution: "@hono/node-server@npm:1.8.2"
checksum: dda9a37a9f73ebae64edd653d348dd63c5bd8205e368a8767c8f21bee5e0cbe555c8b279e98a4805ad27ae00517bbeae4fccf27119c6c06af8a268e126d82d0d
"@hono/node-server@npm:^1.10.0":
version: 1.10.0
resolution: "@hono/node-server@npm:1.10.0"
checksum: d6ed27c41cf3fd10873cd3c927c3459ed9d596d28e4870ad145660e6783f0de9109ec0fe97b45ba55844c6fb41acb748005cff76cdbd78a944a98179489d3cba
languageName: node
linkType: hard

Expand All @@ -977,7 +977,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@hono/vite-dev-server@workspace:packages/dev-server"
dependencies:
"@hono/node-server": ^1.8.2
"@hono/node-server": ^1.10.0
"@playwright/test": ^1.37.1
glob: ^10.3.10
hono: ^4.0.1
Expand Down
Loading