angular-cormorant

0.2.2 • Public • Published

cormorant

Fetch JSON from a URL, regardless if the GET returns JSON or HTML. In the case of the latter, JSON-LD will be extracted, if present. We believe in an open Internet of Things.

In the scheme of Things (pun intended)

The beaver.js, cormorant.js and cuttlefish.js modules work together as a unit. See our dashboard-template-angular for a minimal implementation.

cormorant logo

What's in a name?

Cormorants are a family of aquatic birds well adapted for diving to catch fish in their long, slender bill which is hooked in an Angular kind of way. In its client-side habitat, cormorant.js will commonly dive into pools created by beaver.js in search of linked data, adeptly swimming from URL to URL, to collect its prey: JSON-LD.

Cormorants are also known as shags. If you’ve read our other mascot stories, at this point you may be surprised that we didn’t play on the shag & beaver theme. We could have, but it seems rather tame once you discover the mechanics of how that goes down for our other mascot, the cuttlefish!

Hello cormorant

angular.module('appName', [ 'reelyactive.cormorant' ])
 
  .controller('LinkedDataCtrl', function($scope, cormorant) {
 
    var url1 = 'http://www.reelyactive.com';
    var url2 = 'https://reelyactive.github.io/stories/hq/';
 
    $scope.stories = cormorant.getStories();
 
    cormorant.getStory(url1, function(story, url) {
      console.log(story);
    });
 
    cormorant.getCombinedStory(url1, url2, null, function(story, id) {
      console.log(story);
    });
  });

Include the above in a .js file, and then source both that file and cormorant.js in an HTML file. Upon running the HTML file, the JSON-LD embedded in reelyactive.com will be output to the console.

What's next?

In future, cormorant will recursively fetch JSON from URLs contained in the preceding fetch. If you're developing with cormorant, check out:

License

MIT License

Copyright (c) 2016-2017 reelyActive

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i angular-cormorant

Weekly Downloads

4

Version

0.2.2

License

MIT

Last publish

Collaborators

  • reelyactive