Route â
Web servers use the request's path and HTTP method to look up the correct resource, refers as "routing".
We can define a route by calling a method named after HTTP verbs, passing a path and a function to execute when matched.
import { Elysia } from 'elysia'
new Elysia()
.get('/', () => 'Landing')
.get('/hello', () => 'Hi')
.listen(3000)
import { Elysia } from 'elysia'
new Elysia()
.get('/', () => 'Landing')
.get('/hello', () => 'Hi')
.listen(3000)
We can access the web server by going to http://localhost:3000
This code create a web server running at port 3000, and register the following path with the GET method which response as follows:
Path | Result |
---|---|
/ | Landing |
/hello | Hi |
TIP
By default, web browser will sent GET method when vising the page.
This is why accessing get with the browser works.
HTTP Verb â
There are many HTTP methods to use in a different situation, for instance.
GET â
Requests using GET should only retrieve data.
POST â
Submits a payload to the specified resource, often causing state change or side effect.
PUT â
Replaces all current representations of the target resource using the request's payload.
DELETE â
Deletes the specified resource.
To handle each of the different verbs, Elysia has a built-in API for several HTTP verbs by default, similar to Elysia.get
import { Elysia } from 'elysia'
new Elysia()
.get('/', () => 'hello')
.post('/hi', () => 'hi')
.listen(3000)
import { Elysia } from 'elysia'
new Elysia()
.get('/', () => 'hello')
.post('/hi', () => 'hi')
.listen(3000)
Elysia HTTP methods accepts the following parameters:
- path: Pathname
- function: Function to respond to the client
- hook: Additional metadata
You can read more about the HTTP methods on HTTP Request Methods.
Handle â
Most developers use REST clients like Postman, Insomnia or Hoppscotch to test their API.
However, Elysia can be programmatically test using Elysia.handle
.
import { Elysia } from 'elysia'
const app = new Elysia()
.get('/', () => 'hello')
.post('/hi', () => 'hi')
.listen(3000)
app.handle(new Request('http://localhost/')).then(console.log)
import { Elysia } from 'elysia'
const app = new Elysia()
.get('/', () => 'hello')
.post('/hi', () => 'hi')
.listen(3000)
app.handle(new Request('http://localhost/')).then(console.log)
Elysia.handle is a function to process an actual request sent to the server.
TIP
Unlike unit test's mock, you can expect it to behave like an actual request sent to the server.
But also useful for simulating or creating unit tests.
Custom Method â
We can accept custom HTTP Methods with Elysia.route
.
import { Elysia } from 'elysia'
const app = new Elysia()
.get('/', () => 'hello')
.post('/', () => 'hi')
.route('M-SEARCH', '/', () => 'connect')
.listen(3000)
import { Elysia } from 'elysia'
const app = new Elysia()
.get('/', () => 'hello')
.post('/', () => 'hi')
.route('M-SEARCH', '/', () => 'connect')
.listen(3000)
Elysia.route accepts the following:
- method: HTTP Verb
- path: Pathname
- function: Function to response to the client
- hook: Additional metadata
When navigating to each method, you should see the results as the following:
Path | Method | Result |
---|---|---|
/ | GET | hello |
/ | POST | hi |
/ | M-SEARCH | connect |
TIP
Based on RFC 7231, HTTP Verb is case-sensitive.
It's recommended to use the UPPERCASE convention for defining a custom HTTP Verb with Elysia.
Elysia.all â
Elysia provides an Elysia.all
for handling any HTTP method for a specified path using the same API like Elysia.get and Elysia.post
import { Elysia } from 'elysia'
new Elysia().all('/', () => 'hi').listen(3000)
import { Elysia } from 'elysia'
new Elysia().all('/', () => 'hi').listen(3000)
Any HTTP method that matches the path, will be handled as follows:
Path | Method | Result |
---|---|---|
/ | GET | hi |
/ | POST | hi |
/ | DELETE | hi |
404 â
If no path matches the defined routes, Elysia will pass the request to error
life cycle before returning a "NOT_FOUND" with an HTTP status of 404.
We can handle a custom 404 error by returning a value from 'error` life cycle like this:
import { Elysia } from 'elysia'
new Elysia()
.get('/', () => 'hi')
.onError(({ code }) => {
if (code === 'NOT_FOUND') return 'Route not found :('
})
.listen(3000)
import { Elysia } from 'elysia'
new Elysia()
.get('/', () => 'hi')
.onError(({ code }) => {
if (code === 'NOT_FOUND') return 'Route not found :('
})
.listen(3000)
When navigating to your web server, you should see the result as follows:
Path | Method | Result |
---|---|---|
/ | GET | hi |
/ | POST | Route not found :( |
/hi | GET | Route not found :( |
You can learn more about life cycle and error handling in Life Cycle Events and Error Handling.
TIP
HTTP Status is used to indicate the type of response. By default if everything is correct, the server will return a '200 OK' status code (If a route matches and there is no error, Elysia will return 200 as default)
If the server fails to find any route to handle, like in this case, then the server shall return a '404 NOT FOUND' status code.