@itee/client 10.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/CHANGELOG.md +251 -0
  2. package/LICENSE.md +23 -0
  3. package/README.md +76 -0
  4. package/builds/itee-client.cjs.js +6517 -0
  5. package/builds/itee-client.cjs.js.map +1 -0
  6. package/builds/itee-client.cjs.min.js +125 -0
  7. package/builds/itee-client.esm.js +6468 -0
  8. package/builds/itee-client.esm.js.map +1 -0
  9. package/builds/itee-client.esm.min.js +124 -0
  10. package/builds/itee-client.iife.js +6524 -0
  11. package/builds/itee-client.iife.js.map +1 -0
  12. package/builds/itee-client.iife.min.js +125 -0
  13. package/package.json +87 -0
  14. package/sources/client.js +14 -0
  15. package/sources/cores/TAbstractFactory.js +42 -0
  16. package/sources/cores/TCloningFactory.js +39 -0
  17. package/sources/cores/TConstants.js +433 -0
  18. package/sources/cores/TInstancingFactory.js +41 -0
  19. package/sources/cores/TStore.js +303 -0
  20. package/sources/cores/_cores.js +13 -0
  21. package/sources/input_devices/TKeyboardController.js +158 -0
  22. package/sources/input_devices/TMouseController.js +31 -0
  23. package/sources/input_devices/_inputDevices.js +11 -0
  24. package/sources/loaders/TBinaryConverter.js +35 -0
  25. package/sources/loaders/TBinaryReader.js +1029 -0
  26. package/sources/loaders/TBinarySerializer.js +258 -0
  27. package/sources/loaders/TBinaryWriter.js +429 -0
  28. package/sources/loaders/_loaders.js +21 -0
  29. package/sources/loaders/converters/ArrayBinaryConverter.js +33 -0
  30. package/sources/loaders/converters/BooleanBinaryConverter.js +24 -0
  31. package/sources/loaders/converters/DateBinaryConverter.js +21 -0
  32. package/sources/loaders/converters/NullBinaryConverter.js +13 -0
  33. package/sources/loaders/converters/NumberBinaryConverter.js +15 -0
  34. package/sources/loaders/converters/ObjectBinaryConverter.js +101 -0
  35. package/sources/loaders/converters/RegExBinaryConverter.js +11 -0
  36. package/sources/loaders/converters/StringBinaryConverter.js +26 -0
  37. package/sources/loaders/converters/UndefinedBinaryConverter.js +13 -0
  38. package/sources/managers/TDataBaseManager.js +1649 -0
  39. package/sources/managers/_managers.js +10 -0
  40. package/sources/utils/TIdFactory.js +84 -0
  41. package/sources/utils/_utils.js +9 -0
  42. package/sources/webapis/WebAPI.js +773 -0
  43. package/sources/webapis/WebAPIOrigin.js +141 -0
  44. package/sources/webapis/_webapis.js +10 -0
  45. package/sources/webapis/messages/WebAPIMessage.js +75 -0
  46. package/sources/webapis/messages/WebAPIMessageData.js +51 -0
  47. package/sources/webapis/messages/WebAPIMessageError.js +79 -0
  48. package/sources/webapis/messages/WebAPIMessageEvent.js +58 -0
  49. package/sources/webapis/messages/WebAPIMessageProgress.js +91 -0
  50. package/sources/webapis/messages/WebAPIMessageReady.js +66 -0
  51. package/sources/webapis/messages/WebAPIMessageRequest.js +94 -0
  52. package/sources/webapis/messages/WebAPIMessageResponse.js +80 -0
  53. package/sources/webapis/messages/_messages.js +16 -0
  54. package/sources/workers/AbstractWorker.js +149 -0
  55. package/sources/workers/_workers.js +10 -0
  56. package/sources/workers/messages/WorkerMessage.js +33 -0
  57. package/sources/workers/messages/WorkerMessageData.js +30 -0
  58. package/sources/workers/messages/WorkerMessageError.js +32 -0
  59. package/sources/workers/messages/WorkerMessageMethodCall.js +60 -0
  60. package/sources/workers/messages/WorkerMessageProgress.js +67 -0
  61. package/sources/workers/messages/_messages.js +14 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,251 @@
1
+ # [v10.0.0](https://github.com/Itee/client/compare/v9.0.0...v10.0.0) (2026-01-23)
2
+
3
+ ## 🐛 Bug Fixes
4
+ - [`5968e3b`](https://github.com/Itee/client/commit/5968e3b) (package) apply package override to fix trust publishing
5
+
6
+ ## 💥 Breaking Changes
7
+ - [`3d9c5f3`](https://github.com/Itee/client/commit/3d9c5f3) (package) change package name itee-client to scoped version @itee/client
8
+
9
+ # [v9.0.0](https://github.com/Itee/client/compare/v8.3.0...v9.0.0) (2026-01-23)
10
+
11
+ ## ✨ New Features
12
+ - [`f05ddfc`](https://github.com/Itee/client/commit/f05ddfc) (tasks) upgrade tasks to latest itee and gulp standards
13
+ - [`1d4617e`](https://github.com/Itee/client/commit/1d4617e) (tasks) update default tasks to latest itee standards
14
+ - [`09810f9`](https://github.com/Itee/client/commit/09810f9) (tests) remove the need to build backend file to run unit and benches tests
15
+
16
+ ## 🐛 Bug Fixes
17
+ - [`04f6c74`](https://github.com/Itee/client/commit/04f6c74) (gulpfile) fix broken import links
18
+ - [`27b1115`](https://github.com/Itee/client/commit/27b1115) (gulpfile-refresh) use external script that do not require gulp to be loaded for refreshing it
19
+ - [`1d46185`](https://github.com/Itee/client/commit/1d46185) (compute-unit-tests-task) fix default template for empty units
20
+ - [`8e444d2`](https://github.com/Itee/client/commit/8e444d2) (tasks) fix frontend task run on empty test generation
21
+ - [`0ac97db`](https://github.com/Itee/client/commit/0ac97db) (release) fix release task and update others to latest standards
22
+
23
+ ## 💥 Breaking Changes
24
+ - [`d0d8455`](https://github.com/Itee/client/commit/d0d8455) (node) drop nodejs v18 support and introduce nodejs v24
25
+
26
+ # [v8.3.0](https://github.com/Itee/itee-client/compare/v8.2.1...v8.3.0) (2025-10-20)
27
+
28
+ ## ✨ New Features
29
+ - [`45b3c3b`](https://github.com/Itee/itee-client/commit/45b3c3b) (package) use cz-emoji in favor of cz-conventional-changlog
30
+ - [`68705cc`](https://github.com/Itee/itee-client/commit/68705cc) (gulpfile) split gulpfile tasks into sub-tasks files
31
+
32
+ ## 🐛 Bug Fixes
33
+ - [`904b2df`](https://github.com/Itee/itee-client/commit/904b2df) (gulpfile) fix gulp.conf file extension
34
+ - [`7049ad9`](https://github.com/Itee/itee-client/commit/7049ad9) (rollup.conf) fix removed parameter name to fix iife generation
35
+
36
+ ## [8.2.1](https://github.com/Itee/itee-client/compare/v8.2.0...v8.2.1) (2025-09-08)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * **npm:** run npm audit fix ([b168661](https://github.com/Itee/itee-client/commit/b168661053fe8bb2a58180ad3bfe934168bd1a7b))
42
+
43
+ # [8.2.0](https://github.com/Itee/itee-client/compare/v8.1.2...v8.2.0) (2025-09-08)
44
+
45
+
46
+ ### Bug Fixes
47
+
48
+ * **global:** apply some lint fixes ([1ed726f](https://github.com/Itee/itee-client/commit/1ed726f30739549ae0efad1c9137250c28e2e2dd))
49
+ * **package:** downgrade karma to v4 to fix npm install ([743e862](https://github.com/Itee/itee-client/commit/743e862da0a512ff763eec5d5959f1441c6df39d))
50
+ * **webapimessagedata:** fix too permissive type check for toJSON serialization ([cfbb1fc](https://github.com/Itee/itee-client/commit/cfbb1fcfb2923a7a0ed9b7279d2a0b5ec257f37f))
51
+
52
+
53
+ ### Features
54
+
55
+ * **binaryserializer:** add new classes to manage binary input/output ([d39ba8a](https://github.com/Itee/itee-client/commit/d39ba8a7e948a5ea733c71db0354352c485d1e0f))
56
+ * **webapi:** add events management in WebAPI ([6805802](https://github.com/Itee/itee-client/commit/68058029f9ec5ea7d000f7b54deece432667507a))
57
+
58
+ ## [8.1.2](https://github.com/Itee/itee-client/compare/v8.1.1...v8.1.2) (2022-03-03)
59
+
60
+
61
+ ### Bug Fixes
62
+
63
+ * **tbinaryreader:** fix skipBitOffsetOf and skipBitOffsetTo in case they are first statement ([74542e4](https://github.com/Itee/itee-client/commit/74542e4a063ebf72f498ea36a734699ede5b1329))
64
+
65
+ ## [8.1.1](https://github.com/Itee/itee-client/compare/v8.1.0...v8.1.1) (2022-03-01)
66
+
67
+
68
+ ### Bug Fixes
69
+
70
+ * **tbinaryreader:** fix skipBitOffsetTo and skipBitOffsetOf in case they reach end of bit field ([a97b1a2](https://github.com/Itee/itee-client/commit/a97b1a2050936f010312de5dc5e04f5ae907f485))
71
+
72
+ # [8.1.0](https://github.com/Itee/itee-client/compare/v8.0.2...v8.1.0) (2022-03-01)
73
+
74
+
75
+ ### Features
76
+
77
+ * **tbinaryreader:** add bit field managment. tbinaryreader is now able to read bit pet bit or bits ([932c30e](https://github.com/Itee/itee-client/commit/932c30e98a390a694e67dca4ee99e1ed04475c15))
78
+
79
+ ## [8.0.2](https://github.com/Itee/itee-client/compare/v8.0.1...v8.0.2) (2022-02-23)
80
+
81
+
82
+ ### Bug Fixes
83
+
84
+ * **workermessageprogress:** fix typo in class validator name ([1ea13b4](https://github.com/Itee/itee-client/commit/1ea13b4ceb9c4f1353388489f41b45f873ceea9e))
85
+
86
+ ## [8.0.1](https://github.com/Itee/itee-client/compare/v8.0.0...v8.0.1) (2022-02-14)
87
+
88
+
89
+ ### Bug Fixes
90
+
91
+ * **package:** update deps to latest version ([c5c3b50](https://github.com/Itee/itee-client/commit/c5c3b5035f896b89212e29db5ada9315da739f37))
92
+
93
+ # [8.0.0](https://github.com/Itee/itee-client/compare/v7.4.4...v8.0.0) (2022-02-14)
94
+
95
+
96
+ ### Bug Fixes
97
+
98
+ * **eslint:** add missing dev deps about @babel/core to be able to run eslint-parser ([88c6c8a](https://github.com/Itee/itee-client/commit/88c6c8ac75e606e578db968af40ebce33c65e10c))
99
+ * **package:** apply npm audit fix ([7a526a7](https://github.com/Itee/itee-client/commit/7a526a77ec10b0090e6b8af6779b5b657d6b016e))
100
+ * **package:** update dependencies to latest version ([4810e2b](https://github.com/Itee/itee-client/commit/4810e2b4be6ead4dffe965e2028f578f9348656a))
101
+ * **workermessageprogress:** fix nameof exported workermessageprogress ([5fc21b2](https://github.com/Itee/itee-client/commit/5fc21b269f65c93540da9b0378d35a0f121d2032))
102
+
103
+
104
+ ### Code Refactoring
105
+
106
+ * **webapi:** refactor the usage of webapi and improve capability and perfs ([33c03eb](https://github.com/Itee/itee-client/commit/33c03eb2b9ac3166b044722787d9a3690c2a8649))
107
+
108
+
109
+ ### BREAKING CHANGES
110
+
111
+ * **webapi:** the class abstractwebapi is now webapi. And WebApiMessageResponse is now
112
+ webAPIMessageResponse.
113
+ * **workermessageprogress:** workerprogressmessage become workermessageprogress
114
+
115
+ ## [7.4.4](https://github.com/Itee/itee-client/compare/v7.4.3...v7.4.4) (2021-07-21)
116
+
117
+
118
+ ### Bug Fixes
119
+
120
+ * **readme:** fix readme tag ([f30659f](https://github.com/Itee/itee-client/commit/f30659fdf12022dd1fb0965d4bd04ce059612659))
121
+
122
+ ## [7.4.3](https://github.com/Itee/itee-client/compare/v7.4.2...v7.4.3) (2021-07-08)
123
+
124
+
125
+ ### Bug Fixes
126
+
127
+ * **webapimessage:** fix uuidv4 import statement ([70c2fef](https://github.com/Itee/itee-client/commit/70c2fefd8a9785a9bff0cda5c9afb8d32d1685b7))
128
+
129
+ ## [7.4.2](https://github.com/Itee/itee-client/compare/v7.4.1...v7.4.2) (2021-07-08)
130
+
131
+
132
+ ### Bug Fixes
133
+
134
+ * **package:** apply dependencies fix ([d6f5b4a](https://github.com/Itee/itee-client/commit/d6f5b4a756a85daa817c503a6ee8721df3e02b1a))
135
+ * **package:** apply fix from dependencies ([ee04855](https://github.com/Itee/itee-client/commit/ee04855c4bc69f02afc26c9bb775940b374f0e8e))
136
+ * **releaserc:** fix missing dev maps ([bbae34a](https://github.com/Itee/itee-client/commit/bbae34abc3f67b312458e897de7d9813a43c4301))
137
+
138
+ ## [7.4.1](https://github.com/Itee/itee-client/compare/v7.4.0...v7.4.1) (2021-07-05)
139
+
140
+
141
+ ### Bug Fixes
142
+
143
+ * **package:** miss some dependencies ([35ecf43](https://github.com/Itee/itee-client/commit/35ecf434530984f482e265d3945ab8f51ded4ba1))
144
+
145
+ # [7.4.0](https://github.com/Itee/itee-client/compare/v7.3.0...v7.4.0) (2021-07-05)
146
+
147
+
148
+ ### Bug Fixes
149
+
150
+ * **eslint:** fix eslint error ([c36537f](https://github.com/Itee/itee-client/commit/c36537f9c43aade0e830af39a0787b81ce7621e4))
151
+ * **package:** apply npm audit fix ([1f68193](https://github.com/Itee/itee-client/commit/1f68193d603a66882f0acb028ae39a22f3d04de8))
152
+ * **rollupconfig:** remove sourcemap in production ([893a513](https://github.com/Itee/itee-client/commit/893a513cd414ebf42fe116db7fc4fcdbc29d0293))
153
+
154
+
155
+ ### Features
156
+
157
+ * **iteecore:** use TLogger from itee-core pacakge instead of local one ([f714873](https://github.com/Itee/itee-client/commit/f7148732f77f77b8984ebae4aabb1c59fe64ee19))
158
+
159
+ # [7.3.0](https://github.com/Itee/itee-client/compare/v7.2.0...v7.3.0) (2021-01-21)
160
+
161
+
162
+ ### Bug Fixes
163
+
164
+ * **abstractwebapi:** fix response dispatch ([f7e219a](https://github.com/Itee/itee-client/commit/f7e219a0be396e4c2dc1551f4dd65986aeddebde))
165
+ * **abstractwebapi:** use correct origin uri in warning message ([ddfcc7d](https://github.com/Itee/itee-client/commit/ddfcc7d10ca0eec9a1d352cc3d82e523b8630485))
166
+
167
+
168
+ ### Features
169
+
170
+ * **abstractwebapi:** add allow any origins notion to allow by default all origin and remove target ([010a871](https://github.com/Itee/itee-client/commit/010a871b15079c02d642cc50bfcbfa02ab45052f))
171
+
172
+ # [7.2.0](https://github.com/Itee/itee-client/compare/v7.1.4...v7.2.0) (2020-12-18)
173
+
174
+
175
+ ### Bug Fixes
176
+
177
+ * **abstractwebapi:** add unreachable flag on origin that cannot be reached ([011872b](https://github.com/Itee/itee-client/commit/011872beec8647e626c22b1829fa694e31882453))
178
+ * **abstractwebapi:** move some members before internal setters to avoid bad initialization ([75f4681](https://github.com/Itee/itee-client/commit/75f468171f2c56578e9caa51c51865dfe9892be5))
179
+ * **abstractwebapi:** test if response exist before trying to access his members ([6ceb1ea](https://github.com/Itee/itee-client/commit/6ceb1ea809ef6b2444fd0d4fd321de1cfefb979d))
180
+ * **eslint:** fix eslint error ([ef75cd6](https://github.com/Itee/itee-client/commit/ef75cd685ba157e85c9cdf94614c27684b28ce95))
181
+ * **package:** add missing package-lock ([dbf87bf](https://github.com/Itee/itee-client/commit/dbf87bf088b33b53a26050cafe546911654e86e7))
182
+
183
+
184
+ ### Features
185
+
186
+ * **webapi:** add webapi support and abstract class ([9c206ae](https://github.com/Itee/itee-client/commit/9c206aefbd028948d5ec15243fbdf8bff78702a2))
187
+ * **worker:** add worker support and abstract classes ([c869fc6](https://github.com/Itee/itee-client/commit/c869fc67966b45fbb1299936e503f88a77465691))
188
+
189
+ ## [7.1.4](https://github.com/Itee/itee-client/compare/v7.1.3...v7.1.4) (2020-07-21)
190
+
191
+
192
+ ### Bug Fixes
193
+
194
+ * **package:** upgrade all deps to their latest version ([69636a7](https://github.com/Itee/itee-client/commit/69636a70ea7523f410fc4cc565a8b846b862ab72))
195
+
196
+ ## [7.1.3](https://github.com/Itee/itee-client/compare/v7.1.2...v7.1.3) (2020-06-15)
197
+
198
+
199
+ ### Bug Fixes
200
+
201
+ * **tbinaryreader:** fix wrong function call witout parenthesis ([1ca24f9](https://github.com/Itee/itee-client/commit/1ca24f9fc1cb25e4057cd3657dda350e955a0b82))
202
+
203
+ ## [7.1.2](https://github.com/Itee/itee-client/compare/v7.1.1...v7.1.2) (2020-02-17)
204
+
205
+
206
+ ### Bug Fixes
207
+
208
+ * **package:** update package lock ([5714cac](https://github.com/Itee/itee-client/commit/5714caca52084c36897d108a84430967bfd41f47)), closes [#23](https://github.com/Itee/itee-client/issues/23)
209
+
210
+ ## [7.1.1](https://github.com/Itee/itee-client/compare/v7.1.0...v7.1.1) (2019-08-14)
211
+
212
+
213
+ ### Bug Fixes
214
+
215
+ * **tdatabasemanager:** comment responsetype check due to enum rollback that throw ([85e758b](https://github.com/Itee/itee-client/commit/85e758b))
216
+
217
+ # [7.1.0](https://github.com/Itee/itee-client/compare/v7.0.0...v7.1.0) (2019-08-12)
218
+
219
+
220
+ ### Features
221
+
222
+ * **docs:** add docs to github ([7e1dcce](https://github.com/Itee/itee-client/commit/7e1dcce))
223
+
224
+ # [7.0.0](https://github.com/Itee/itee-client/compare/v6.6.6...v7.0.0) (2019-08-05)
225
+
226
+
227
+ ### Bug Fixes
228
+
229
+ * **karmatestconfig:** use firefox browser for deployment ([ccd42fa](https://github.com/Itee/itee-client/commit/ccd42fa))
230
+
231
+
232
+ ### Code Refactoring
233
+
234
+ * **builds:** remove support for amd and umd modules, rename itee-client.es to itee-client.esm ([1645262](https://github.com/Itee/itee-client/commit/1645262))
235
+ * **controllers:** move three controllers into itee-mongodb-three package ([9748de2](https://github.com/Itee/itee-client/commit/9748de2))
236
+ * **databasemanagers:** remove database managers that are now include in itee-mongodb-three ([263e76f](https://github.com/Itee/itee-client/commit/263e76f))
237
+ * **global:** update intermediary exporter files ([5baf30e](https://github.com/Itee/itee-client/commit/5baf30e))
238
+ * **loaders:** move three loader in their related package itee-mongodb-three ([95c0199](https://github.com/Itee/itee-client/commit/95c0199))
239
+ * **objects3d:** remove three objects3d in their own package ([75bb4da](https://github.com/Itee/itee-client/commit/75bb4da))
240
+ * **uis:** remove uis folder ([ad833ae](https://github.com/Itee/itee-client/commit/ad833ae))
241
+
242
+
243
+ ### BREAKING CHANGES
244
+
245
+ * **builds:** remove amd and umd support
246
+ * **global:** UI is now in itee-ui, three stuff is now in itee-mongodb-three
247
+ * **objects3d:** remove three objects
248
+ * **loaders:** remove three loaders
249
+ * **controllers:** remove three controllers
250
+ * **databasemanagers:** remove database managers in favor of itee-mondogb-three
251
+ * **uis:** all uis are removed from client in favor of itee-ui
package/LICENSE.md ADDED
@@ -0,0 +1,23 @@
1
+ ### BSD-3-Clause License
2
+
3
+ **Copyright (c) 2015-Present, Itee, Valcke Tristan [https://github.com/Itee](https://github.com/Itee). All rights reserved.**
4
+
5
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6
+
7
+ - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
8
+ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9
+ - Neither the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10
+
11
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
12
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
13
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
14
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
15
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
16
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
17
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
18
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
19
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
20
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
21
+
22
+ You should have received a copy of the [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) along
23
+ with this program. If not, see [https://opensource.org/licenses/BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause).
package/README.md ADDED
@@ -0,0 +1,76 @@
1
+
2
+ <h1 align="center">[Itee Client]</h1>
3
+ <br>
4
+
5
+ <p align="center">The itee client is the end user part of the itee solution predicted for running WebGL 3d content. It allow to make fast, and light call to itee server counter part to create/read/update/delete data from webgl server.</p>
6
+ <br>
7
+
8
+ <p align="center">
9
+ <a href="https://www.npmjs.com/package/itee-client" target="_blank" rel="noopener noreferrer">
10
+ <img src="https://img.shields.io/npm/v/itee-client" alt="Current package version">
11
+ </a>
12
+ <a href="https://github.com/Itee/itee-client" target="_blank" rel="noopener noreferrer">
13
+ <img src="https://github.com/Itee/itee-client/actions/workflows/node.js.yml/badge.svg" alt="Itee-Client CI">
14
+ </a>
15
+ <a href="https://github.com/semantic-release/semantic-release" target="_blank" rel="noopener noreferrer">
16
+ <img src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg" alt="Build status">
17
+ </a>
18
+ </p>
19
+
20
+ <br>
21
+ <h2>How to install</h2>
22
+
23
+ From npm:
24
+
25
+ npm install itee-client
26
+
27
+ If you want to build the repository from source follow these instructions:
28
+
29
+ git clone https://github.com/Itee/itee-client.git
30
+ npm install
31
+ npm run build
32
+
33
+ then copy/paste the builded module you need from builds folder.
34
+
35
+ <br>
36
+ <h2>How to use</h2>
37
+
38
+ <p align="center">At begin was <a href="https://itee.github.io/itee-client/">RTFM</a> !</p>
39
+ <br>
40
+ In case you have clone the repository you could also auto-generate the library documentation using:
41
+
42
+ npm run doc
43
+
44
+ <br>
45
+ <h2>License (BSD-3-Clause)</h2>
46
+
47
+ <div class="prettyprint source">
48
+ <code style=" color: #ddd; font-size: 16px; ">
49
+ <p><b>Copyright (c) 2015-Present, Itee, Valcke Tristan <a href="https://github.com/Itee">https://github.com/Itee</a>. All rights reserved.</b></p>
50
+
51
+ <p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</p>
52
+
53
+ <ul>
54
+ <li>Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.</li>
55
+
56
+ <li>Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.</li>
57
+
58
+ <li>Neither the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.</li>
59
+ </ul>
60
+
61
+ <p>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
62
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
63
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
64
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
65
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
66
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
67
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
68
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
69
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
70
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p>
71
+
72
+ <p>You should have received a copy of the <a href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause</a> along
73
+ with this program. If not, see <a href="https://opensource.org/licenses/BSD-3-Clause">https://opensource.org/licenses/BSD-3-Clause</a>.</p>
74
+ </code>
75
+ </div>
76
+