In an example I see something like this:
var uid = require("../support/express/support/connect/lib/connect/utils").uid
var express = require("express") is OK!
var uid = require("express").uid is undefined
I installed express with npm.
How should I require the uid?
express utilizes connect under its hoods which gets installed along with express.
In this case, you want to access the
uidfunction of connect:Since:
etc.