1.2.7 • Published 3 months ago

socket.io-encrypt-ext v1.2.7

Weekly downloads
-
License
-
Repository
github
Last release
3 months ago

socket.io-encrypt-ext

Patches socket.emit and and socket.on functions to send encrypted and decrypt messages using cryptr.

Install

npm i socket.io-encrypt

Usage

client

const SocketIO = require('socket.io-client')
const encrypt = require('socket.io-encrypt')

const socket = SocketIO(SERVER_URL)
encrypt('secret')(socket)

socket.emit('message', {/* will be encrypted */})

server

const SocketIO = require('socket.io')
const encrypt = require('socket.io-encrypt')

const io = SocketIO({})
io.use(encrypt(secret))

io.on('connect', socket => {

  socket.on('message', data /* decrypted */ => { ... })
  socket.on('error', console.error /* handle decryption errors */)

})
1.2.7

3 months ago

1.2.6

2 years ago

1.2.5

2 years ago