argo-subdomain

Middleware for working with subdomains

Usage no npm install needed!

<script type="module">
  import argoSubdomain from 'https://cdn.skypack.dev/argo-subdomain';
</script>

README

Subdomain parser for argo.

Simple middleware for argo that will parse out the subdomain attached to the host header and place it in the environment variable.

Usage

var subdomain = require('argo-subdomain');
var argo = require('argo');

argo()
  .use(subdomain)
  .use(function(handle) {
    handle('response', function(env, next) {
      console.log(env.request.subdomain);
      next(env);
    });
  })
  .listen(3000);