Skip to content

tarsislimadev/abackend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d1c787f · Jan 23, 2025
Dec 22, 2024
Jan 2, 2025
Jan 2, 2025
Jan 5, 2025
Jan 23, 2025
Jan 2, 2025
Jan 2, 2025
Jan 2, 2025
Jan 2, 2025
Jan 2, 2025
Aug 30, 2023
Jan 23, 2025
Dec 29, 2024
Aug 31, 2023
Dec 16, 2024
Sep 1, 2023
Jan 2, 2025
Jan 2, 2025

Repository files navigation

abackend

Easy Back-end Node.js library

NPM Downloads by package author github/stars

donate

Donate

how to write an app

Watch on Youtube how to get started with creating a new app using ABACKEND, following these steps:

create a package.json file

# bash
npm init -y

install ABACKEND

# bash
npm i abackend

write your server

// 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

start your server

node index.js

author

@tarsislimadev

license

MIT

Releases

No releases published

Languages