A simple mock SMS interface for testing SMS services
- Install node.js (http://nodejs.org)
- Install ionic framework
npm install -g cordova ionic - Start interface
ionic serve
The simplest way to use the dev-sms-interface for your own purposes is to implement a smsServer service.
The service exposes a single interface sendSms : function(sms, responseCB) and should callback with a sms object
responseCB({
sender : "Service",
text : "This is a reply from the mock server",
datetime : new Date().getTime()
})