
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
express-force-domain
Advanced tools
Force express 3.x or Connect to use a specific domain. Good for adding or removing www. and handling parked domains that redirect to your main domain.
Force Express 3.x or Connect to use a specific domain. Good for adding or removing the www. from your web app and handling parked domains that redirect to your main domain. You just have to pass in the preferred url to your homepage (ie: http://www.example.com).
For test environments, you need to pass port as well if using something other than port 80. (ie: http://www.example.com:8080).
If example2.com points to the same IP as example1.com you can handle the redirect using express-force-domain.
npm install express-force-domain --save
--save will add the package to your package.json file automatically.
See the package on npm: https://npmjs.org/package/express-force-domain
You can also use as middleware with connect and app.use(), if you are not using express.
Setup a middleware in app.js before all your other routes are defined, and pass the full url to the homepage as an argument: (including port if other than 80):
app.use( require('express-force-domain')('http://www.example.com') );
or
var force = require('express-force-domain');
app.use( force('http://www.example.com') );
or alternative port
app.use( force('http://example.com:8080') );
Note, be sure to put the app.use statement above the app.router.
var cfg = require('./config')
, force = require('express-force-domain');
app.use( force(cfg.site_url) );
...
app.use(app.router);
Alternative:
var site_url = 'http://www.example.com'
, force = require('express-force-domain');
app.use( force(site_url) );
or you can pass the url for the homepage manually, (four examples, pick one):
app.use( require('express-force-domain')('http://example.com') );
app.use( require('express-force-domain')('http://example.com:8080') );
app.use( require('express-force-domain')('http://www.example.com') );
app.use( require('express-force-domain')('http://www.example.com:8080') );
For parked domains you want to redirect, this assumes example2.com points to the same ip as example.com, and you prefer your app live at http://www.example.com:
app.use( require('express-force-domain')('http://www.example.com') );
Requests for http://example2.com, http://www.example2.com, and http://example.com will all redirect to http://www.example.com.
(The MIT License)
FAQs
Force express 3.x or Connect to use a specific domain. Good for adding or removing www. and handling parked domains that redirect to your main domain.
The npm package express-force-domain receives a total of 605 weekly downloads. As such, express-force-domain popularity was classified as not popular.
We found that express-force-domain demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.