0.0.1 • Published 8 years ago

ui-studentsearch v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

ui-studentsearch

A simple API for majapahit.cs.ui.ac.id/studentsearch.

Installation

npm install --save ui-studentsearch

Usage

var ss = require('ui-studentsearch');

// search by npm
ss('1506688888', function(err, students) {
    console.log(err || students);
});

// fuzzy npm search
ss('1506688', function(err, students) {
    console.log(err || students);
});

// search by email
ss('foo.bar@ui.ac.id', function(err, students) {
    console.log(err || students);
});

// fuzzy name search
ss('test', function(err, students) {
    console.log(err || students);
});