npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

hcm-push-kit

v0.0.5

Published

HCM Node SDK.

Downloads

558

Readme

Node.js Sample Code

Table of Contents

Introduction

Node.js sample code encapsulates APIs of the HUAWEI Push Kit server. 
It provides many sample programs for your reference or usage.

The following table describes packages of Node.js sample code.


Package | Description
 ---- | ----- 
 examples|Sample code packages. Each package can run independently to call an API. 
 utils|Tool package, which contains common network requests and common verification methods. 
 push|Package where APIs of the HUAWEI Push Kit server are encapsulated. 

Installation

Before using Node.js sample code, ensure that the node environment has been installed.

In the nodejs-sdk project directory:

```bash
$ npm install
```

Run the sample project:

```bash
$ npm run build
```

Supported Environments

We support Node.js 8.13.0 and higher.

Please also note that the Sample Code should only
be used in server-side/back-end environments controlled by the app developer.
This includes most server and serverless platforms (both on-premise and in
the cloud). It is not recommended to use the Sample Code in client-side
environments.

Configuration

Node.js sample code uses the index.ts file as the entry, creates a HcmNamespace object, calls a    
method in the object for initialization, enters a method module such as the message or topic    
method module, and then calls an API of the HUAWEI Push Kit server using a method in the module.

Before using functions provided by packages in examples, you need to set parameters for initialization    
in hcm-Init.js and set request parameters in target.js in the common package.


Initialization Parameter | Description
 ---- | ----- 
 AppId|App ID, which is obtained from app information. 
 AppSecret|Secret access key of an app, which is obtained from app information.
 AuthUrl|URL for the Huawei OAuth 2.0 service to obtain a token, please refer to Generating an App-Level Access Token.
 PushUrl|URL for accessing HUAWEI Push Kit, please refer to Sending Messages.


Request Parameter | Description
 ---- | ----- 
 TargetTopic|Name of a topic to be subscribed to, unsubscribed from, or queried. 
 TargetCondition|Combination of condition expressions for a message.
 TargetToken|Token of a destination device.
 TargetTokenArray|Tokens of destination devices.

Sample Code

Download node.js sample code in Downloading Server Sample Code. node.js sample code uses index.ts as the entry. Call methods on object HcmNamespace: messaging and topic.

The following table lists methods in HcmNamespace.
| Method | Description |
| ---- | ---- |
| messaging | The entry of the Messaging object, and verify the initialization input parameters. |
| topic | The entry of the Topic object, and verify the initialization input parameters. |

The following table lists methods in Messaging.
| Method | Description |
| ---- | ---- |
| send | Verify if the token needs to be updated and call the method sendRequest. |
| sendRequest | Sends a message to a device. |

The following table lists methods in Topic.
| Method | Description |
| ---- | ---- |
| subScribeTopic | Subscribe to topic. |
| unSubScribeTopic | Unsubscribe topic. |
| queryTopicList | Query subject list. |

# 1 Send an Android data message.
Code location: examples/send_data_message.js

# 2 Send an Android notification message.
Code location: examples/send_notify_message.js

# 3 Send a message by topic.
Code location: examples/send_topic_message.js

# 4 Send a message by conditions.
Code location: examples/send_condition_message.js

# 5 Send a message to a Huawei quick app.
Code location: examples/send_instance_app_message.js

# 6 Send a message through the WebPush agent.
Code location: examples/send_webpush_message.js

# 7 Send a message through the APNs agent.
Code location: examples/send_apns_message.js

# 8 Send a test message.
Code location: examples/send_test_message.js

License

pushkit Node.js sample is licensed under the [Apache License, version 2.0](http://www.apache.org/licenses/LICENSE-2.0).