mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
The example is now available with different syntaxes: - CommonJS - ES modules - TypeScript Related: https://github.com/socketio/socket.io/pull/4787
16 lines
349 B
JSON
16 lines
349 B
JSON
{
|
|
"name": "express-session-example",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Example with express-session (https://github.com/expressjs/session)",
|
|
"scripts": {
|
|
"start": "node index.js"
|
|
},
|
|
"dependencies": {
|
|
"express": "~4.17.3",
|
|
"express-session": "~1.17.2",
|
|
"socket.io": "^4.7.2"
|
|
}
|
|
}
|