Installation
To start a new project with Harpia Core, make sure you have Bun installed:
bun --version
Then initialize your project and install the core package:
bun init -ybun add harpiats
Create a file named server.ts
and add the following code:
import harpia from "harpiats";
const app = harpia();
app.listen( { port: 3000, development: true, }, () => console.log("Server is running at http://localhost:3000/"));
That’s all you need to get started with Harpia Core!