kicks

0.0.1 • Public • Published

node-kicks

kickstarter API for node

Quick Start

var kicks = require('kicks');
var config = require('./config');

kicks.Client.fromEmail(config.email, config.password, null, function (err, client) {
	if (err) console.error(err);
	else client.search_projects('coffee', 50, function (err, projects) {
		if (err) console.error(err);
		else console.log(projects.map(function (project) {
			return {
				name: project.name,
				blurb: project.blurb,
				location: project.location.name,
				url: project.urls.web.project_short
			};
		}));
	});
});

API Reference

Currently, the only API reference is the groc docs, so you'll have to open the ./doc/index.html in your browser to get at them.

/kicks/

    Package Sidebar

    Install

    npm i kicks

    Weekly Downloads

    1

    Version

    0.0.1

    License

    BSD

    Last publish

    Collaborators

    • sehrgut