New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angular-climb

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-climb

Angular module for interacting with the Climb.social public API.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

angular-climb

Reusable module for interacting the climb.social public API.

Dependencies

Angular, obviously, but that's it.

Installation

Via NPM:

$ npm install angular-climb --save

Or bower:

$ bower install angular-climb --save

Usage

Configure your Climb feed in the Climb admin UI. Note the feedId.

Add the module to your app dependencies:

var angular = require('angular');

angular.module('myApp', [
  require('angular-climb')
]);

Use the service whenever you want it:

function controller(Climb) {
    var vm = this;
    
    var FEED_ID = '7216e32607f244179f5c51350a2ee2c8';
    Climb.getFeed(FEED_ID).then(function(items) {
        vm.social = items;
    });
    
}

Example

See the climb demo in this repo for an example of how to use.

Running tests

Download the project dependencies:

$ bower install
$ npm install

Then run with grunt:

$ grunt karma:unit

References

Docs 100 Shapes Climb.social

Keywords

FAQs

Package last updated on 16 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc