https://github.com/jayydoesdev/app-listener
App Listener
https://github.com/jayydoesdev/app-listener
Last synced: 11 months ago
JSON representation
App Listener
- Host: GitHub
- URL: https://github.com/jayydoesdev/app-listener
- Owner: JayyDoesDev
- License: mit
- Created: 2021-05-19T17:02:00.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-26T20:57:22.000Z (almost 5 years ago)
- Last Synced: 2025-04-11T22:58:33.729Z (about 1 year ago)
- Language: TypeScript
- Size: 41 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# app-listener
app-listener is a simple express helper to help you connect to ports easily.
## Installation
Yarn
`yarn add app-listener`
NPM
`npm i app-listener`
## TypeScript
```typescript
import appListener from 'app-listener';
const app: appListener = new appListener()
app.listen(3000)
```
## JavaScript
```javascript
const { appListener } = require('app-listener')
const app = new appListener()
app.listen(3000)
```