Easy Back-end Node.js library
Watch on Youtube how to get started with creating a new app using ABACKEND, following these steps:
# bash
npm init -y
# bash
npm i abackend
// index.js
import { Server } from 'abackend'
const server = new Server()
server.get('/', (req, res) => res.setJSON({ id: Date.now() }))
server.listen(80).then((port) => console.log(`PORT: ${PORT}`))
server.listen(8080) // more instances
node index.js