Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hollaex/hollaex-node-lib
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.1
Choose a base ref
...
head repository: hollaex/hollaex-node-lib
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 4,411 additions and 942 deletions.
  1. +10 −0 .editorconfig
  2. +3 −0 .eslintrc.json
  3. +0 −1 .prettierignore.json
  4. +0 −8 .prettierrc.json
  5. +0 −21 LICENSE
  6. +356 −261 README.md
  7. +17 −15 example/hollaex.js
  8. +7 −425 index.js
  9. +2,859 −0 kit.js
  10. +1,079 −186 package-lock.json
  11. +20 −10 package.json
  12. +4 −4 test/REST/restApiTest.js
  13. +6 −6 test/Websocket/websocketTest.js
  14. +1 −1 test/common.js
  15. +49 −4 utils.js
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true

[*.{js,json}]
indent_style = tab
indent_size = 4
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -12,6 +12,9 @@
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"indent": ["error", "tab"],
"arrow-parens": ["error", "always"],
"object-curly-spacing": ["error", "always"],
"no-console": 0
}
}
1 change: 0 additions & 1 deletion .prettierignore.json

This file was deleted.

8 changes: 0 additions & 8 deletions .prettierrc.json

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

Loading