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

Improve examples in Essential Route docs #309

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
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
18 changes: 8 additions & 10 deletions docs/essential/route.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import Playground from '../../components/nearl/playground.vue'
import { Elysia } from 'elysia'

const demo1 = new Elysia()
.get('/', () => 'hello')
.post('/hi', () => 'hi')
.get('/', () => 'Landing')
.get('/hello', () => 'Hi')

const demo2 = new Elysia()
.get('/', () => 'hello')
Expand All @@ -29,17 +29,15 @@ const demo2 = new Elysia()
const demo3 = new Elysia()
.get('/get', () => 'hello')
.post('/post', () => 'hi')
.route('M-SEARCH', '/m-search', () => 'connect')
.route('M-SEARCH', '/m-search', () => 'connect')

const demo4 = new Elysia()
.get('/', () => 'hello')
.post('/', () => 'hello')
.delete('/', () => 'hello')
.all('/', () => 'hi')

const demo5 = new Elysia()
.get('/', () => 'hello')
.post('/', () => 'hello')
.get('/hi', ({ error }) => error(404))
.get('/', () => 'hi')
.post('/', ({ error }) => error(404, 'Route not found :('))
.get('/hi', ({ error }) => error(404, 'Route not found :('))
</script>

# Route
Expand Down Expand Up @@ -96,7 +94,7 @@ import { Elysia } from 'elysia'

new Elysia()
.get('/', () => 'hello')
.post('/hi', () => 'hi')
.post('/hi', () => 'world')
.listen(3000)
```

Expand Down