This Node.js module allows the users to parse and query the Nobel Prize winners data set.
You can install the module from npm
:
$ npm install nobelprize
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));
This repo contains two samples that illustrate how to use the Parser
class.