title | description | tags | ||
---|---|---|---|---|
Fastify |
A Fastify server |
|
This example starts a Fastify server.
- Fastify
- TypeScript
- Install dependencies
yarn
- Connect to your Railway project
railway link
- Start the development server
railway run yarn dev
The server started simply returns a { message: "Hello world!" }
payload in JSON. The server code is located in the index.ts
file.
..