New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

bind-host

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bind-host

Bind the available host to Express Server.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

express-bind-host

Bind the available host to Express Server.

Installation

$ npm install express-bind-host --save

Usage

let bindHost = require('express-bind-host');

let app = express();

app.use(bindHost({
  hosts : ['127.0.0.1:3000']
}))
app.use(function(req, res, next) {
  res.json({aa:'bb'})
})

app.listen(3000);
curl http://localhost:3000  #statu -> 403  body -> The domain name is not bound!
curl http://127.0.0.1:3000  #statu -> 200  body -> {aa:'bb'}

License

MIT © Krew

Keywords

express

FAQs

Package last updated on 24 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts