0.0.1 • Published 13 years ago

memonic v0.0.1

Weekly downloads
7
License
-
Repository
github
Last release
13 years ago

memonic

memonic api wrapper for nodejs.

Installation

  npm install memonic

Usage

  var memonic = require('memonic');
  var user = { id : 'memonicId', password : 'memonicPassword' };
  
  var mn = new memonic('your memonic api key here');
  mn.connect( user.id, user.password );
  mn.items({pagesize:5, page : 1} , function(err, result){
	// do something with result	  
  });
  

Run Tests

  npm test

Author: 임창진