0.0.1 • Published 8 years ago

http-app v0.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
8 years ago

#HTTP App Service for Express Server

HTTP Service will listen on process.env.PORT or 8000

const express = require('express');
const app = express();
const httpApp = require('http-app');

httpApp(app)
  .then((message) => console.log(message))
  .catch((error) => console.error(error));
  // Server listening HTTP on port 8000
  
0.0.1

8 years ago