Noopol Storage API


<domain> and <name> should not be longer than 32 characters


Installation:

Requires any version of JQuery

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="http://storage.noopol.com/jquery.noopolStorage.js"></script>

First you need to auth key, and optionally domain

Then you can start using API


Usage:
  noopolStorage.setText("my-name", "iggi")  
    .done(function(){ console.log("success"); })
    .fail(function(e){ console.log(e.responseText); })
    .always(function(){})
  ;
  noopolStorage.getText("my-name")  
    .done(function(data){ console.log(data); })
    .fail(function(e){ console.log(e.responseText); })
    .always(function(){})
  ;