Coder Social home page Coder Social logo

nelligan-api's Introduction

Nelligan-api

CI

JS lib that can interact with the Nelligan Montral book library system: list book on your card, check when you need to renew, renew books... The Montreal system is based over the III Encore product so it might work with other systems using same software.

Getting Started

Import the lib in your project

yarn add nelligan-api

Then start using it..

const api = require('nelligan-api')

# define your user library card
card = {
  code: '1277777',
  pin: '1234'
}

# list actual books on the card
const books = await api.books(card)

Sample output:

{
  books:
   [ { title: 'Deception point : roman / Dan Brown ; traduit de l\'anglais (États-Unis) par Daniel Roche.',
       barcode: '32777041843371',
       duedate: '18-12-23',
       rid: 'renew0',
       rvalue: 'i3010099',
       record: 'b1421604',
       fine: undefined,
       renew: 0 }],
  fine: '0.60$ in unpaid fines and bills'
}

API Methods

List books on a card

Get list of book for a specific card

const books = await api.books(card)

Get Book Information

Get additional information (summary, isbn, img link)

record is coming from book.record.

const book = await api.bookinfo(record)

Renew a book

Renew a specific book on a specific Card

book is coming from the first books query.

const data = await api.renew(card, book)

Get holds (reservations)

const books = await api.holds(card)

Search books

const books = await api.search("a keywork expression")

Reserve a book

const data = await api.reserve(card, record, library_code)

A library_code list is provided by api.libraries

Running the tests

yarn test

Built With

License

This project is licensed under the MIT License - see the LICENSE.md file for details

nelligan-api's People

Contributors

dependabot[bot] avatar julbrs avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.