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

loopback-connector-primotexto

v0.2.1

Published

LoopBack connector for Primotexto

Downloads

14

Readme

Build Status Coverage Status

loopback-connector-primotexto

Introduction

A Primotexto connector for LoopBack.

This connector is an adaptation of loopback-connector-twilio and loopback-connector-yunpian for primotexto API.

The connector supports the following aspects of the Primotexto REST API:

Installation

In your LoopBack project:

$ npm install loopback-connector-primotexto

Using the Connector

To use the connector, define the datasource using the connector in your datasources.json file:

"primotexto": {
    "name": "primotexto",
    "connector": "loopback-connector-primotexto",
    "apiKey": "YOUR_PRIMOTEXTO_API_KEY"
}

Next, attach the created datasource to a model in the model-config.json file:

"Primotexto": {
    "dataSource": "primotexto",
    "public": true
}

Now, using the created model, you can send a SMS using the send method of the model:

// with a callback
Primotexto.send(options, function (err, res) {

});


// or with a Promise
Primotexto.send(options)
    .then(function (res) {

    })
    .catch(function (err) {
    });

Note: options is defined by the JSON objects in the next two sections:

Sending a notification SMS

{
    "type": "notification",
    "receiver": "RECEIVER_PHONE_NUMBER",
    "message": "TEXT_MESSAGE",
    "sender": "YOUR_PHONE_NUMBER",
    "campaignName": "CAMPAIN_NAME",
    "category": "CATEGORY"
}

Sending a marketing SMS

{
    "type": "marketing",
    "receiver": "RECEIVER_PHONE_NUMBER",
    "message": "TEXT_MESSAGE",
    "sender": "YOUR_PHONE_NUMBER",
    "campaignName": "CAMPAIN_NAME",
    "category": "CATEGORY"
}

Running the Example

To run the example in the /example/example.js directory, you must set the following values in the file:

const apiKey = 'YOUR_PRIMOTEXTO_API_KEY'
const receiver = 'RECEIVER_PHONE_NUMBER'
const sender = 'SPC'

Next, from the from the /loopback-connector-primotexto/ directory, install the loopback module using the following command:

$ npm install loopback

Finally, run the example app using the following command from the /loopback-connector-primotexto/ directory:

$ node ./example/example.js

Improvements

Contributing

We welcome your contributions! Thanks for helping make loopback-connector-primotexto a better project for everyone.

Testing

To start the test from test/test.js , use the following command :

$ npm test

You can also run code coverage with :

$ npm run-script cover

Version

0.2.1

License

MIT Copyright (c) 2017 Yelloan