tls-session-cache

1.0.2 • Public • Published

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.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.2
    33
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.2
    33
  • 1.0.1
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i tls-session-cache

Weekly Downloads

33

Version

1.0.2

License

ISC

Unpacked Size

5.26 kB

Total Files

6

Last publish

Collaborators

  • fijimunkii