Mungkin agak ketinggalan zaman, tetapi saat ini, sesi Ekspres dapat mengenali opsi domain untuk cookie. Menurut sumber:
function session(options){
var options = options || {}
// name - previously "options.key"
, name = options.name || options.key || 'connect.sid'
, store = options.store || new MemoryStore
, cookie = options.cookie || {}
...
Dan ini untuk menyetel cookie:
var Cookie = module.exports = function Cookie(options) {
this.path = '/';
this.maxAge = null;
this.httpOnly = true;
if (options) merge(this, options);
...
Jadi, sesuatu seperti ini akan berfungsi untuk master 1.10.1 saat ini:
secret: "my secret",
cookie: {
domain: "mydomain.com",