Skip to content

Commit

Permalink
Updating README.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsislimadev committed Aug 31, 2023
1 parent 5d61e20 commit ef099a3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @brtmvdl/backend

## install

```bash
npm i @brtmvdl/backend
```

## how to use

```js
const { Server } = require('@brtmvdl/backend')

const server = new Server()

server.get('/', (req, res) => res.setJSON({ id: Date.now() }))

server.listen('8080')
```

## License

[MIT](./LICENSE)

0 comments on commit ef099a3

Please sign in to comment.