pancake-sms v0.0.1
Table of Contents
Usage
const {SMSClient} = require('../dist/index');
const client = new SMSClient(
{
email: {
"service": "gmail",
"auth": {
"user": "email@domain.com",
"pass": "password"
}
}
});
client.send({
pnumber: "7166048061",
text: "this is a test text message",
carrier: "verizon",
region: "US"
});
About
pancake
is an outgoing SMS library and API. It allows you to send texts via Vtext to numerous mobile carriers in various regions. One of the packages include an example of an outgoing SMS express server.
Built With
nodemailer
- Send emails to vtext addresses
Getting Started
Prerequisites
You are expected to have an updated version of node.js. Pancake is tested on node.js >12.0.0 and we make no guarantees that it will work on earlier versions. The target ES version intended is ES5.
Installation
- Install through NPM
(recommended)
npm install pancake-sms
- Clone the repo and build
git clone https://github.com/zaida04/pancake
cd pancake
npm i
npm build
Then proceed to move the related dirs to your node_modules
Documentation
Documentation will be coming once the project is at a usable state.
Contributing
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Please ensure your commits pass the tests, lints, and builds. This means you should test it locally before pushing.