abackend

0.0.5 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i abackend

Weekly Downloads

0

Version

0.0.5

License

MIT

Unpacked Size

28.8 kB

Total Files

41

Last publish

Collaborators

  • tarsislimadev