Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bulksms

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bulksms

BulkSMS API wrapper for NodeJS

  • 0.0.3
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

BulkSMS API

NPM version Build Status

BulkSMS is a simple implementation of BulkSMS API for NodeJS that allows you to easily integrate SMS services into your application.

Installation

This module requires Node v6.0.0+.

npm install bulksms --save

Usage

To use this module you need an account from www.bulksms.com (you start with 5 free credits).

const BulkSMS = require('bulksms')
const SMS = new BulkSMS('[USER]', '[PASSWORD]')
SMS.send('[NUMBER]', 'Hello, this is just a test!', (err, result) => {
  if (err)
    return console.error(err)

  console.log(result)
})

Contributing

  1. Fork it ( https://github.com/hugoabonizio/bulksms/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

Keywords

FAQs

Package last updated on 21 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc