New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

udp-messenger

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

udp-messenger - npm Package Compare versions

Comparing version 0.0.1 to 0.1.0

8

package.json
{
"name": "udp-messenger",
"version": "0.0.1",
"version": "0.1.0",
"description": "Send messages over udp in small chunks",

@@ -17,5 +17,5 @@ "main": "src/index.js",

"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/vijayee/udp-messages.git"
"repository" :
{ "type" : "git"
, "url" : "https://github.com/vijayee/udp-messages"
},

@@ -22,0 +22,0 @@ "dependencies": {

@@ -5,3 +5,5 @@ 'use strict'

const fs = require('fs')
const msgproto = fs.readFileSync('./src/message.proto')
const path = require('path')
const file = path.join(__dirname, 'message.proto')
const msgproto = fs.readFileSync(file)
const protobuf = require('protocol-buffers')

@@ -8,0 +10,0 @@ const pb = protobuf(msgproto)

'use strict'
const fs = require('fs')
const msgproto = fs.readFileSync('./src/message.proto')
const path = require('path')
const file = path.join(__dirname, 'message.proto')
const msgproto = fs.readFileSync(file)
const protobuf = require('protocol-buffers')

@@ -5,0 +7,0 @@ const pb = protobuf(msgproto)

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc