https://github.com/tarsislimadev/abackend
Easy Back-end Node.js library
https://github.com/tarsislimadev/abackend
backend nodejs npm
Last synced: 10 months ago
JSON representation
Easy Back-end Node.js library
- Host: GitHub
- URL: https://github.com/tarsislimadev/abackend
- Owner: tarsislimadev
- License: mit
- Created: 2023-08-30T14:40:57.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-05-11T16:42:37.000Z (about 1 year ago)
- Last Synced: 2025-08-09T00:53:37.184Z (11 months ago)
- Topics: backend, nodejs, npm
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/abackend
- Size: 186 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.npmjs.com/package/abackend)
Easy Back-end Node.js library
[](https://www.npmjs.com/package/abackend) [](https://img.shields.io/github/stars/tarsislimadev/abackend?style=social)
## donate
[Donate](https://link.mercadopago.com.br/brtmvdl)
## how to write an app
Watch on [Youtube](https://youtu.be/h1d-yo2yovk) how to get started with creating a new app using ABACKEND, following these steps:
### create a package.json file
```sh
# bash
npm init -y
```
### install ABACKEND
```sh
# bash
npm i abackend
```
### write your server
```js
// index.js
const { Server } = require('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
```sh
node index.js
```
## author
[@tarsislimadev](https://www.linkedin.com/in/tarsislimadev/)
## license
[MIT](./LICENSE)