1.0.1 • Published 3 years ago

nobelprizeparser v1.0.1

Weekly downloads
53
License
MIT
Repository
-
Last release
3 years ago

Nobel Prize data parser

This Node.js module allows the users to parse and query the Nobel Prize winners data set.

Installation

You can install the module from npm:

$ npm install nobelprize

Usage

First, you have to import the Parser constructor:

const Parser = require('nobelprizeparser');

Then, you can pass the Nobel Prize data to the constructor:

const parser = new Parser(data);

Finally, you can query the data set using methods of the Parser class:

console.table(parser.inYear(2001));

Samples

This repo contains two samples that illustrate how to use the Parser class.