Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tarsislimadev/abackend
Easy Back-end Node.js library
https://github.com/tarsislimadev/abackend
backend nodejs npm
Last synced: 24 days 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-16T00:25:09.000Z (26 days ago)
- Last Synced: 2024-12-16T00:27:13.877Z (26 days ago)
- Topics: backend, nodejs, npm
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/abackend
- Size: 168 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# [abackend](https://www.npmjs.com/package/abackend)
Easy Back-end Node.js library
[![NPM Downloads by package author](https://img.shields.io/npm-stat/dw/tarsislimadev?label=NPM%20Downloads)](https://www.npmjs.com/package/abackend) [![github/stars](https://img.shields.io/github/stars/tarsislimadev/abackend?style=social)](https://img.shields.io/github/stars/tarsislimadev/abackend?style=social)
## social & donate
[Donate](https://link.mercadopago.com.br/brtmvdl) - [Telegram](https://t.me/+KRmg5MlqgMk0MTg5) - [Discord](https://discord.gg/2zWpWBgmPj)
## how to install
```sh
# bash
npm i abackend
```## how to use
### package.json
```json
{
"type": "module",
...
}
```### write the server files
```js
// index.jsimport { Server } from 'abackend'
const server = new Server()
server.get('/', (req, res) => res.setJSON({ id: Date.now() }))
server.listen(80)
```### start
```sh
node index.js
```## author
[@tarsislimadev](https://www.linkedin.com/in/tarsislimadev/)
## license
[MIT](./LICENSE)