-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/v1.0.0: (29 commits) Update changelog build Update lib Remove all listeners on disconnect Update dependencies Fix linting Update some libs replace js-md5 with md5 Add isStreamClient method Export spacebunny params interface Add bufferutil and utf8 validate Add message caching Add commonjs build Fix stomp & stomp stream Client Add timeout for reconnection Fix single stream hook for mqttstreamclient Update mqtt Better handling of listeners for amqp client Compilation improvements Fix create channel Handle AMQP automatic reconnection Remove lodash ...
- Loading branch information
Showing
117 changed files
with
11,797 additions
and
161,643 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
NPM_USERNAME=username | ||
NPM_PASSWORD=password | ||
NPM_EMAIL=[email protected] | ||
NPM_EMAIL=[email protected] | ||
|
||
# Connection | ||
HOST=HOST | ||
PORT=PORT | ||
VHOST=VHOST | ||
|
||
# Device | ||
DEVICE_KEY=DEVICE_KEY | ||
DEVICE_ID=DEVICE_ID | ||
SECRET=SECRET | ||
|
||
# Stream | ||
CLIENT=CLIENT | ||
SECRET=SECRET | ||
STREAM=STREAM | ||
DEVICE_ID=DEVICE_ID | ||
CHANNEL=CHANNEL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
./assets | ||
./config | ||
./flow-typed | ||
./dist | ||
./docs | ||
./examples | ||
./lib | ||
./node_modules | ||
./public | ||
lib | ||
examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,50 @@ | ||
{ | ||
"extends": "eslint:recommended", | ||
"extends": [ | ||
"airbnb/base", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:@typescript-eslint/recommended-requiring-type-checking" | ||
], | ||
"env": { | ||
"es6": true, | ||
"browser": true, | ||
"node": true | ||
}, | ||
"parser": "babel-eslint", | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 6, | ||
"ecmaFeatures": { | ||
"impliedStrict": true | ||
} | ||
"project": "tsconfig.lint.json", | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
"no-console": 1, | ||
"semi": 2, | ||
"no-control-regex": 0, | ||
"no-undef": 0, | ||
"react/require-default-props": 0 | ||
"no-void": 0, | ||
"comma-dangle": 0, | ||
"camelcase": 0, | ||
"no-use-before-define": 0, | ||
"no-unneeded-ternary": 0, | ||
"no-restricted-globals": 0, | ||
"no-unused-expressions": 0, | ||
"consistent-return": 0, | ||
"max-len": 0, | ||
"arrow-body-style": 0, | ||
"arrow-parens": 0, | ||
"import/no-extraneous-dependencies": 0, | ||
"func-names": 0, | ||
"global-require": 0, | ||
"no-underscore-dangle": 0, | ||
"no-bitwise": 0, | ||
"object-curly-newline": 0, | ||
"no-unused-vars": 0, | ||
"import/prefer-default-export": 0, | ||
"import/no-dynamic-require": 0, | ||
"import/no-unresolved": 0, | ||
"import/extensions": 0, | ||
"@typescript-eslint/interface-name-prefix": 0, | ||
"@typescript-eslint/explicit-function-return-type": 0, | ||
"@typescript-eslint/no-empty-interface": 0, | ||
"@typescript-eslint/no-explicit-any": 0, | ||
"@typescript-eslint/no-var-requires": 0 | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v8.11.3 | ||
v12.16.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"recommendations": [ | ||
"EditorConfig.EditorConfig", | ||
"christian-kohler.path-intellisense", | ||
"mike-co.import-sorter", | ||
"mikestead.dotenv", | ||
"Orta.vscode-jest" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
// Use IntelliSense to learn about possible Node.js debug attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug", | ||
"program": "${workspaceRoot}/dist/app.js", | ||
"smartStep": true, | ||
"outFiles": [ | ||
"../dist/**/*.js" | ||
], | ||
"protocol": "inspector", | ||
"env": { | ||
"NODE_ENV": "production" | ||
} | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "attach", | ||
"name": "Nodemon Debug", | ||
"port": 9229, | ||
"restart": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"typescript.tsdk": "./node_modules/typescript/lib", | ||
"files.exclude": { | ||
"tsconfig.build.json": true, | ||
}, | ||
"importSorter.generalConfiguration.sortOnBeforeSave": true, | ||
"importSorter.importStringConfiguration.tabSize": 2, | ||
"files.trimTrailingWhitespace": true, | ||
"editor.formatOnSave": false, | ||
"jest.showCoverageOnLoad": true, | ||
"jest.autoEnable": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
(c) Copyright 2018 Fancy Pixel S.r.l., all rights reserved. |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.