Citation.js

Citation.js

Citation.js (GitHub, NPM) converts formats like BibTeX, Wikidata JSON and ContentMine JSON to CSL-JSON to convert to other formats like APA, Vancouver and back to BibTeX.

Features

  • Conversion from: Wikidata, Wikidata IDs, BibTeX, Bib.TXT and BibJSON
  • Conversion to: CSL-JSON, BibTeX, Bib.TXT, and formatted citations
  • Extensive sorting (more coming soon!)
  • Version control
  • Support for Node.js, browser, and has a CLI
  • MIT licensed
itation.js

Related projects

Demo

const Cite = require('citation-js')

const data = await Cite.async('Q30000000')

data.get({
  format: 'string',
  type: 'html',
  style: 'citation-apa',
  lang: 'en-US'
})