Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@highoutput/amqp

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@highoutput/amqp - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

build/index.d.ts

11

package.json
{
"name": "@highoutput/amqp",
"version": "0.0.8",
"version": "0.0.9",
"description": "A simplified abstraction of the AMQP 1.0 protocol",

@@ -18,3 +18,5 @@ "keywords": [

"test": "TS_NODE_PROJECT=tsconfig.json TS_NODE_FILES=true cucumber-js -p default",
"debug": "node --nolazy --debug-brk=5858 ./node_modules/.bin/cucumberjs"
"clean": "rimraf build/",
"build": "npm run clean && tsc --project tsconfig.json",
"prepublish": "npm run build"
},

@@ -28,2 +30,3 @@ "bugs": {

"@types/ramda": "^0.26.40",
"@types/serialize-error": "^4.0.1",
"@types/uuid": "^3.4.6",

@@ -33,2 +36,3 @@ "chai": "^4.2.0",

"cucumber-pretty": "^6.0.0",
"rimraf": "^3.0.0",
"ts-node": "^8.6.2",

@@ -43,2 +47,3 @@ "typescript": "^3.7.5"

"rhea": "^1.0.16",
"serialize-error": "^5.0.0",
"uuid": "^3.4.0"

@@ -49,3 +54,3 @@ },

},
"gitHead": "dc55257256f2b9b62063db23471612829fd74adc"
"gitHead": "724e467edde9795b02b1446427e303986a2a9a12"
}

@@ -8,3 +8,5 @@ /* eslint-disable @typescript-eslint/no-non-null-assertion, @typescript-eslint/camelcase */

type AmqpOptions = {
export { Client, Worker };
export type AmqpOptions = {
host: string;

@@ -27,3 +29,3 @@ port: number;

public constructor(options?: Partial<AmqpOptions>) {
this.options = R.mergeDeepRight(options || {}, {
this.options = R.mergeDeepLeft(options || {}, {
host: 'localhost',

@@ -30,0 +32,0 @@ port: 5672,

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