/App-Listener

App Listener

Primary LanguageTypeScriptMIT LicenseMIT

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

import appListener from 'app-listener';

const app: appListener = new appListener()
app.listen(3000)

JavaScript

const { appListener } = require('app-listener')

const app = new appListener()
app.listen(3000)