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: [BREAKING] deprecate Route, use Hono instead #237

Merged
merged 1 commit into from
May 16, 2022
Merged

Conversation

yusukebe
Copy link
Member

Route will be obsolete! in this PR.
For grouping routes, use Hono instead.

// const api = new Route() <--- obsolete
const api = new Hono()

api.get('/posts', (c) => c.text('list'))
api.post('/posts', (c) => c.text('create'))

app.route('/v1', api)

Close #236

@yusukebe yusukebe mentioned this pull request May 16, 2022
4 tasks
@yusukebe yusukebe merged commit ea1fd00 into develop May 16, 2022
@yusukebe yusukebe deleted the feat/app-route branch May 16, 2022 12:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant