Skip to content

tarsislimadev/abackend

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