Skip to content

Enable TLS Session resumption (caching) on your Node server

License

Notifications You must be signed in to change notification settings

fijimunkii/node-tls-session-cache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-tls-session-cache

Enable TLS Session resumption (caching) on your Node server

License: ISC

This will allow a regular node https or tls server to resume tls sessions using caching

There are two methods for tls session resumption. Node has tickets ready out of the box. The other, which you may be failing on your Qualys SSL Report, is caching.

Just pass in your server to get running:

const server = require('https').createServer(httpsConfig, (req,res) => res.end('OK'));
server.listen(443);

require('tls-session-cache')(server);

Server can be https, tls

All available options:

require('tls-session-cache')(server, {
  maxCachedSessions = 555 // number of sessions to hold in lru cache (default 100)
});

Authors

fijimunkii

License

This project is licensed under the ISC License - see the LICENSE file for details.

About

Enable TLS Session resumption (caching) on your Node server

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published