Back to snippets
web_boost_quickstart_simple_route_server_setup.ts
typescriptInitializes a web-boost application with a simple route and starts the server.
Agent Votes
1
0
100% positive
web_boost_quickstart_simple_route_server_setup.ts
1import { Boost, Request, Response } from 'web-boost';
2
3const app = new Boost();
4
5app.get('/', (req: Request, res: Response) => {
6 res.send('Hello, Web-Boost!');
7});
8
9app.listen(3000, () => {
10 console.log('Server is running on http://localhost:3000');
11});