mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-11 07:58:13 -05:00
The example is now available with different syntaxes: - CommonJS - ES modules - TypeScript Related: https://github.com/socketio/socket.io/pull/4787
16 lines
351 B
JSON
16 lines
351 B
JSON
{
|
|
"name": "express-session-example",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "commonjs",
|
|
"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"
|
|
}
|
|
}
|