0.0.1 • Published 10 years ago

nuget-count v0.0.1

Weekly downloads
4
License
-
Repository
github
Last release
10 years ago

nuget-count

Build Status Fetch a user's package count from Nuget

Usage

get = require 'nuget-count'

success = (count) -> ...
error = (err) -> ...

(get 'someUserName').then success, error

Features

  • Uses promises

Implementation notes

  • Uses scraping (:[) because Nuget has no API.
  • Because of the scraping approach, we cannot differentiate between user that exist but have no repos, and users that don't exist. Either will return a rejected promise.

Supported environments

  • Node
  • CommonJS