npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cic-js

v1.1.0

Published

A wrapper for the CIC Api.

Downloads

7

Readme

#Cic JS library v1.1.0

cic-js is a client wrapper which communicates with the CIC API, and interact with it.

Quick start

You have three options to install cic-js librayr and use it:

  • Clone the repo: git clone [email protected]:IcaliaLabs/cic-js.git.
  • Install via bower: bower install cic-js.
  • Install via npm: npm install cic-js.

Usage

The library provides 3 class objects:

Report

Fetch report records

To fetch the reports, you can just call the class method find()

	Report.find()

You can send some options to the find method, in order to filter the request:

  • limit - how many reports you want
  • for_category - The category in which to filter the reports
  • until - Filter reports previous to the date in format YYY-MMD-DD
  • async - Wheter or not you want the call to handle asyncronous
  • callback - A function to call when the request has been success

Here is a quick example:

	Report.find(
		{
			"limit": 1,
			"async": false,
			"for_category": 407,
			"until": "2014-01-19"
		}
	)

Save a report

It is really simple to create a report, we recommend you check the CIC API for defining the report attributes

	report = new Report({
		"content": "The report content",
		"category": "ACCIDENTE"
		...
	});
	report.save(function(report) { //the callback is optional
		console.log(report.ticketId);
	});

There is a shorthand in here, if you want to create a report in one line:

	report = Report.create({
		"content": "The report content",
		"category": "ACCIDENTE"
		...
	}, function(report){ //The callback function is optional in here
		console.log(report.ticketId);
	});

Category

Fetch categories

To fetch the reports, you can just call the class method find()

	Category.all()

You can send some options to the all method:

  • options - Wheter or not you want the call to handle asyncronous
  • callback - A function to call when the request has been success

Here is a quick example:

	Category.all({
		"async": false
	}, function(categories){
		console.log(categories.length)
	});

Group

Fetch groups

To fetch the reports, you can just call the class method find()

	Group.all()

You can send some options to the all method:

  • options - Wheter or not you want the call to handle asyncronous
  • callback - A function to call when the request has been success

Here is a quick example:

	Group.all({
		"async": false
	}, function(groups){
		console.log(groups)
	});

Bug tracker & feature request

Have a bug or a feature request? Please open a new issue. Before opening any issue, please search for existing issues.

Future

  • Add some usage examples

Contributing

Please submit all pull requests against a separate branch. Please follow the standard for naming the variables, mixins, etc.

Authors

Abraham Kuri

Copyright and license

Copyright 2014 Icalia Labs, Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.