Coder Social home page Coder Social logo

node-subdomain's Introduction

node-subdomain

Simple way to create subdomains in Node JS using express

npm install install all packages

Run: npm start from main directory

This is running on port 3000 currently working with 3 urls

  1. Default: localhost:3000/
  2. Test1: test1.localhost:3000/
  3. Test2: test2.localhost:3000/

Middleware is working to check and make req.url again app.get('*', function(req, res, next){ if (req.headers.host == 'test1.localhost:3000') { //Port is important if the url has it req.url = '/test1' + req.url; } else if(req.headers.host == 'test2.localhost:3000') { req.url = '/test2' + req.url; } next(); });

These are all subdomains

`app.get('/', function(req,res){ //Default case, no subdomain console.log("i am Default"); res.send("i am default");

})

app.get('/test1', function(){ //test1 subdomain console.log("i am test1"); res.send("i am test1"); })

app.get('/test2', function(){ //test2 subdomain console.log("i am sellers"); res.send("i am test2"); })`

node-subdomain's People

Contributors

daniyalgeek avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.