fix(nodejs): send heart beats every 10 seconds (#677)

closes https://github.com/apache/rocketmq-clients/issues/676
diff --git a/nodejs/src/client/BaseClient.ts b/nodejs/src/client/BaseClient.ts
index ad67e08..9fa12da 100644
--- a/nodejs/src/client/BaseClient.ts
+++ b/nodejs/src/client/BaseClient.ts
@@ -137,7 +137,7 @@
     // heartbeat every 10s
     this.#timers.push(setInterval(async () => {
       this.#doHeartbeat();
-    }, 5 * 60000));
+    }, 10000));
 
     // doStats every 60s
     // doStats()