Skip to content

Instantly share code, notes, and snippets.

@A
Created November 29, 2013 07:59
Show Gist options
  • Save A/7702753 to your computer and use it in GitHub Desktop.
Save A/7702753 to your computer and use it in GitHub Desktop.
Use `username:password` string for auth.
var express = require('express');
var credentials = "admin:password";
var basicAuthMw = express.basicAuth.apply(null, credentials.split(':'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment