1.2.9 • Published 3 years ago

@kejiweixun/cmq v1.2.9

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago
const createClient = require("@kejiweixun/cmq");
const SecretId = "xxxxxx";
const SecretKey = "xxxxxx";
const Region = "sh";
const apiEndpoint = "cmq-sh.public.tencenttdmq.com";
const cmqClient = createClient({
  SecretId,
  SecretKey,
  Region,
});
cmqClient
  .PublishMessage({
    topicName: "test",
    msgBody: "test message",
  })
  .then((res) => {
    console.log(res);
  })
  .catch((err) => {
    console.log(err.message);
  });
1.2.9

3 years ago

1.2.8

3 years ago

1.2.7

3 years ago

1.2.6

3 years ago

1.2.5

3 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago