This is a library which helps you to get LIVE notifications of actions taking place on your websites and applications. Just Copy past the below codes and get live updates of errors and actions. Make Categories of pings based on projects (etc) and assign it to your team mates. That's what PingMeLive does. Easy right!.
https://pingmelive.com and get your API KEY.
Include pingMeLive Library
Note It doesn't require any jQuery Library, Its Independent and light(<3KB).
<script src="pingmelive.min.js"></script>
<script type = "text/javascript">
var pingmelive = new pingMeLive("apiKey","projectID","errorStatus(true/false)","errorName");
</script> ...and you are done!
You can also use pingMeLive for sending custom events.
<script>
//To trigger Simple Event, Just call the below function.
pingMeLive.simpleEvent("groupTitle","eventMessage");
</script>If you want to send some detailed long description you can use Detailed event
<script>
//To trigger Simple Event, Just call the below function.
pingMeLive.detailedEvent("groupTitle","eventMessage","detailDescription");
</script>- apiKey : To get an
API KEY, register on pingmelive.com. Its free to use. - projectID : Once registered, Click on New Project to create.
- errorStatus :
true/false(Boolen Value). - errorName : This will be your
Group Title/Namewhere all the error will be pinged.(This works whenerrorStatusis set astrue. - groupTitle : This will be your
Group Tilte/Nameunder which , you will get all your pings. - eventMessage : The
errorMessageis limited to 360 character in length. Any additional characters beyond 360 character will be truncated. - detailDescription : The
detailDescriptionis does not have any length limitation. You can also send JSON Formatted String / or simple plain string.
- If you only want error pings, Just include the
pingMeLive libraryand andIntializeit. - You can smartly use
groupTitlefor creating uniques group for your pings.