निम्नलिखित कार्य करने का मेरा प्रयास यहाँ है:
- एक्सप्रेस : 4.14
- सॉकेट.आईओ : 1.5
- पासपोर्ट (सत्रों का उपयोग करके): 0.3
- redis : 2.6 (सत्रों को संभालने के लिए वास्तव में तेज़ डेटा संरचना; लेकिन आप MongoDB जैसे दूसरों का भी उपयोग कर सकते हैं। हालाँकि, मैं आपको सत्र डेटा + MongoDB के लिए उपयोगकर्ताओं की तरह अन्य डेटा संग्रहीत करने के लिए इसका उपयोग करने के लिए प्रोत्साहित करता हूं)
चूंकि आप कुछ एपीआई अनुरोधों को भी जोड़ना चाहते हैं, हम HTTP पैकेज और HTTP और वेब सॉकेट दोनों को एक ही पोर्ट में काम करने के लिए उपयोग करेंगे ।
server.js
निम्नलिखित एक्सट्रैक्ट में वह सब कुछ शामिल है जो आपको पिछली तकनीकों को सेट करने के लिए आवश्यक है। आप पूरा server.js संस्करण देख सकते हैं जिसका उपयोग मैंने यहां अपनी एक परियोजना में किया था ।
import http from 'http';
import express from 'express';
import passport from 'passport';
import { createClient as createRedisClient } from 'redis';
import connectRedis from 'connect-redis';
import Socketio from 'socket.io';
// Your own socket handler file, it's optional. Explained below.
import socketConnectionHandler from './sockets';
// Configuration about your Redis session data structure.
const redisClient = createRedisClient();
const RedisStore = connectRedis(Session);
const dbSession = new RedisStore({
client: redisClient,
host: 'localhost',
port: 27017,
prefix: 'stackoverflow_',
disableTTL: true
});
// Let's configure Express to use our Redis storage to handle
// sessions as well. You'll probably want Express to handle your
// sessions as well and share the same storage as your socket.io
// does (i.e. for handling AJAX logins).
const session = Session({
resave: true,
saveUninitialized: true,
key: 'SID', // this will be used for the session cookie identifier
secret: 'secret key',
store: dbSession
});
app.use(session);
// Let's initialize passport by using their middlewares, which do
//everything pretty much automatically. (you have to configure login
// / register strategies on your own though (see reference 1)
app.use(passport.initialize());
app.use(passport.session());
// Socket.IO
const io = Socketio(server);
io.use((socket, next) => {
session(socket.handshake, {}, next);
});
io.on('connection', socketConnectionHandler);
// socket.io is ready; remember that ^this^ variable is just the
// name that we gave to our own socket.io handler file (explained
// just after this).
// Start server. This will start both socket.io and our optional
// AJAX API in the given port.
const port = 3000; // Move this onto an environment variable,
// it'll look more professional.
server.listen(port);
console.info(`🌐 API listening on port ${port}`);
console.info(`🗲 Socket listening on port ${port}`);
सॉकेट / index.js
हमारा socketConnectionHandler
, मुझे बस सब कुछ सर्वर के अंदर रखना पसंद नहीं है। जेएस (भले ही आप पूरी तरह से कर सकते हैं), खासकर जब से यह फ़ाइल बहुत जल्दी कोड का एक बहुत कुछ शामिल कर सकती है।
export default function connectionHandler(socket) {
const userId = socket.handshake.session.passport &&
socket.handshake.session.passport.user;
// If the user is not logged in, you might find ^this^
// socket.handshake.session.passport variable undefined.
// Give the user a warm welcome.
console.info(`⚡︎ New connection: ${userId}`);
socket.emit('Grettings', `Grettings ${userId}`);
// Handle disconnection.
socket.on('disconnect', () => {
if (process.env.NODE_ENV !== 'production') {
console.info(`⚡︎ Disconnection: ${userId}`);
}
});
}
अतिरिक्त सामग्री (ग्राहक):
जावास्क्रिप्ट सॉकेट.आईओ क्लाइंट क्या हो सकता है इसका एक बहुत ही मूल संस्करण:
import io from 'socket.io-client';
const socketPath = '/socket.io'; // <- Default path.
// But you could configure your server
// to something like /api/socket.io
const socket = io.connect('localhost:3000', { path: socketPath });
socket.on('connect', () => {
console.info('Connected');
socket.on('Grettings', (data) => {
console.info(`Server gretting: ${data}`);
});
});
socket.on('connect_error', (error) => {
console.error(`Connection error: ${error}`);
});
संदर्भ:
मैं कोड के अंदर संदर्भ नहीं दे सकता था, इसलिए मैंने इसे यहां स्थानांतरित किया।
1: अपनी पासपोर्ट रणनीतियों को कैसे सेट करें: https://scotch.io/tutorials/easy-node-authentication-setup-and-local#handling-signupregistration