1.0.1 • Published 5 years ago
nobelprizeparser v1.0.1
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 nobelprizeUsage
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.