This project contains two implementations of a basic HTTP server, one using Bun and the other using Node.js.
bun-server.js
- Contains the code to start a server using Bun.node-server.js
- Contains the code to start a server using Node.js.
- Bun installed for running the
bun-server.js
file. - Node.js installed for running the
node-server.js
file.
To run the Bun server, use the following command:
bun bun-server.js
To run the Node server, use the following command:
```bash
node node-server.js