w-converhp 2.0.41 → 2.0.43
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.
- package/README.md +1 -1
- package/dist/w-converhp-client.umd.js +1 -1
- package/dist/w-converhp-server.umd.js +2 -2
- package/dist/w-converhp-server.umd.js.map +1 -1
- package/docs/WConverhpClient.html +1 -1
- package/docs/WConverhpClient.mjs.html +1 -1
- package/docs/WConverhpServer.html +1 -1
- package/docs/WConverhpServer.mjs.html +6 -7
- package/docs/index.html +1 -1
- package/package.json +1 -1
- package/src/WConverhpServer.mjs +5 -6
|
@@ -529,7 +529,7 @@
|
|
|
529
529
|
<br class="clear">
|
|
530
530
|
|
|
531
531
|
<footer>
|
|
532
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Apr 24 2025
|
|
532
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Apr 24 2025 10:12:09 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
533
533
|
</footer>
|
|
534
534
|
|
|
535
535
|
<script>prettyPrint();</script>
|
|
@@ -1107,7 +1107,7 @@ export default WConverhpClient
|
|
|
1107
1107
|
<br class="clear">
|
|
1108
1108
|
|
|
1109
1109
|
<footer>
|
|
1110
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Apr 24 2025
|
|
1110
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Apr 24 2025 10:12:09 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
1111
1111
|
</footer>
|
|
1112
1112
|
|
|
1113
1113
|
<script>prettyPrint();</script>
|
|
@@ -749,7 +749,7 @@
|
|
|
749
749
|
<br class="clear">
|
|
750
750
|
|
|
751
751
|
<footer>
|
|
752
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Apr 24 2025
|
|
752
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Apr 24 2025 10:12:09 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
753
753
|
</footer>
|
|
754
754
|
|
|
755
755
|
<script>prettyPrint();</script>
|
|
@@ -561,7 +561,7 @@ function WConverhpServer(opt = {}) {
|
|
|
561
561
|
let chunks = []
|
|
562
562
|
let smw = new stream.Writable({
|
|
563
563
|
write(chunk, encoding, cb) {
|
|
564
|
-
// console.log('receive payload', chunk)
|
|
564
|
+
// console.log('smw receive payload', chunk)
|
|
565
565
|
|
|
566
566
|
//push
|
|
567
567
|
chunks.push(chunk)
|
|
@@ -575,7 +575,7 @@ function WConverhpServer(opt = {}) {
|
|
|
575
575
|
|
|
576
576
|
//finish
|
|
577
577
|
smw.on('finish', () => {
|
|
578
|
-
console.log(
|
|
578
|
+
// console.log(`smw finish`)
|
|
579
579
|
})
|
|
580
580
|
|
|
581
581
|
//pipe
|
|
@@ -583,8 +583,7 @@ function WConverhpServer(opt = {}) {
|
|
|
583
583
|
|
|
584
584
|
//end
|
|
585
585
|
req.payload.on('end', () => {
|
|
586
|
-
// console.log(`
|
|
587
|
-
console.log('[req.payload] end')
|
|
586
|
+
// console.log(`req.payload end`)
|
|
588
587
|
|
|
589
588
|
//bb
|
|
590
589
|
let bb = Buffer.concat(chunks)
|
|
@@ -600,12 +599,12 @@ function WConverhpServer(opt = {}) {
|
|
|
600
599
|
|
|
601
600
|
//close
|
|
602
601
|
req.payload.on('close', () => {
|
|
603
|
-
console.log(
|
|
602
|
+
// console.log(`req.payload close`)
|
|
604
603
|
})
|
|
605
604
|
|
|
606
605
|
//error
|
|
607
606
|
req.payload.on('error', (err) => {
|
|
608
|
-
// console.log(`
|
|
607
|
+
// console.log(`req.payload error`, err)
|
|
609
608
|
eeEmit('error', `receive payload err`)
|
|
610
609
|
pm.reject(err.message)
|
|
611
610
|
})
|
|
@@ -1475,7 +1474,7 @@ export default WConverhpServer
|
|
|
1475
1474
|
<br class="clear">
|
|
1476
1475
|
|
|
1477
1476
|
<footer>
|
|
1478
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Apr 24 2025
|
|
1477
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Apr 24 2025 10:12:09 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
1479
1478
|
</footer>
|
|
1480
1479
|
|
|
1481
1480
|
<script>prettyPrint();</script>
|
package/docs/index.html
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
<br class="clear">
|
|
72
72
|
|
|
73
73
|
<footer>
|
|
74
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Apr 24 2025
|
|
74
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Apr 24 2025 10:12:09 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
75
75
|
</footer>
|
|
76
76
|
|
|
77
77
|
<script>prettyPrint();</script>
|
package/package.json
CHANGED
package/src/WConverhpServer.mjs
CHANGED
|
@@ -514,7 +514,7 @@ function WConverhpServer(opt = {}) {
|
|
|
514
514
|
let chunks = []
|
|
515
515
|
let smw = new stream.Writable({
|
|
516
516
|
write(chunk, encoding, cb) {
|
|
517
|
-
// console.log('receive payload', chunk)
|
|
517
|
+
// console.log('smw receive payload', chunk)
|
|
518
518
|
|
|
519
519
|
//push
|
|
520
520
|
chunks.push(chunk)
|
|
@@ -528,7 +528,7 @@ function WConverhpServer(opt = {}) {
|
|
|
528
528
|
|
|
529
529
|
//finish
|
|
530
530
|
smw.on('finish', () => {
|
|
531
|
-
console.log(
|
|
531
|
+
// console.log(`smw finish`)
|
|
532
532
|
})
|
|
533
533
|
|
|
534
534
|
//pipe
|
|
@@ -536,8 +536,7 @@ function WConverhpServer(opt = {}) {
|
|
|
536
536
|
|
|
537
537
|
//end
|
|
538
538
|
req.payload.on('end', () => {
|
|
539
|
-
// console.log(`
|
|
540
|
-
console.log('[req.payload] end')
|
|
539
|
+
// console.log(`req.payload end`)
|
|
541
540
|
|
|
542
541
|
//bb
|
|
543
542
|
let bb = Buffer.concat(chunks)
|
|
@@ -553,12 +552,12 @@ function WConverhpServer(opt = {}) {
|
|
|
553
552
|
|
|
554
553
|
//close
|
|
555
554
|
req.payload.on('close', () => {
|
|
556
|
-
console.log(
|
|
555
|
+
// console.log(`req.payload close`)
|
|
557
556
|
})
|
|
558
557
|
|
|
559
558
|
//error
|
|
560
559
|
req.payload.on('error', (err) => {
|
|
561
|
-
// console.log(`
|
|
560
|
+
// console.log(`req.payload error`, err)
|
|
562
561
|
eeEmit('error', `receive payload err`)
|
|
563
562
|
pm.reject(err.message)
|
|
564
563
|
})
|