A simple server for creating RESTful APIs.
npm install @coatl/server
import { App } from '@coatl/server';
const app = new App({
port: process.env.PORT || 3000,
});
app.get('/hello', (req, res) => {
res.send('Hello World!');
});
app.run();
MIT