nodequote

Node.JS Wrapper for the quote.fm API

Usage no npm install needed!

<script type="module">
  import nodequote from 'https://cdn.skypack.dev/nodequote';
</script>

README

nodequote

A basic quote.fm API wrapper with a simple interface. Compatibile with API Version 1.0.6.

Install

npm install nodequote

Usage

var nodeQuote = require("./nodequote.js");

nodeQuote.getUser("fweinb", function(json, error){
    if (!error){
        console.log(json);
    }
});

For more information see the Function Reference or the test.js.