rislib
v1.1.0
Published
A package for parsing RIS bibliographic files and returning JSON
Downloads
19
Readme
rislib
RIS Library is a simple package for working working with RIS citations.
RIS Compliance
This library adds two fields that extend the RIS specification to more precisely capture the editors and translators of a piece of media, where the array fields ED and TR capture them respectively.
Current Functionality
- Reading RIS files and returning JSON
Planned Functionality
- Validation for RIS media types (books, articles, films, etc.)
- Citation generator (Chicago, MLA, APA, etc.)
Usage
In Javascript:
const { ReadRIS } = require('rislib');
const records = ReadRIS('MY_FILE.ris');In TypeScript:
import { ReadRIS } from "rislib";
console.log(ReadRIS("MY_FILE.ris"))And run!
Internals
RISLib is developed in typescript.
