npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

medlinexmltojson

v1.2.1

Published

Software to parse MEDLINE XML to JSON.

Downloads

13

Readme

MEDLINEXMLToJSON

MEDLINEXMLToJSON is a Node.js application designed for MEDLINE®/PubMed® Data licensees to download and convert the MEDLINE®/PubMed® XML data into a JSON format.

We are in no way affiliated with MEDLINE® or PubMed®. We're only a MEDLINE® licensed library that want to share this software with the public so that anyone with a MEDLINE license can easier utilize MEDLINE® metadata for improving healthcare.

Wikipedia has an article regarding MEDLINE® here https://en.wikipedia.org/wiki/MEDLINE and PubMed here https://en.wikipedia.org/wiki/PubMed

The U.S. National Library of Medicine have a page about MEDLINE® here http://www.nlm.nih.gov/pubs/factsheets/medline.html

It's developed for the 2014 version of the MEDLINE® XML DTD (Document type definition).

Dependencies

The only dependency is the XML parser sax by Isaac Z. Schlueter.

Installation

npm install medlinexmltojson

Example usage

Simple example

var medline2json = require("medlinexmltojson");

medline2json.parse("myxmlfile.xml", function(err, json) {
	// err is a string saying what's wrong. It's null if there's not an error.
	// json is the json string. It's null if there's an error.
});

Stream example

var medline2json = require("medlinexmltojson"),
	fs = require("fs");

medline2json.parse(fs.createReadStream("./myxmlfile.xml"), function(err, json) {
	// err is a string saying what's wrong. It's null if there's not an error.
	// json is the json string. It's null if there's an error.
});

Stream example with gzipping

var medline2json = require("medlinexmltojson"),
	fs = require("fs"),
	zlib = require('zlib'),
	gzip = zlib.createGunzip();

medline2json.parse(fs.createReadStream("./myxmlfile.xml.gz").pipe(gzip), function(err, json) {
	// err is a string saying what's wrong. It's null if there's not an error.
	// json is the json string. It's null if there's an error.
});

Continous "streaming" of JSON example

var medline2json = require("medlinexmltojson");

medline2json.parse("myxmlfile.xml", true, function(err, json) {
	// Callback will be run as many times as there are MEDLINE data in the XML file.
});

License

This project is released under the terms of the GNU AGPL version 3

Author

Emil Hemdal

Changelog

Version 1.2.1 - 20th of August 2014

Made numbers actual numbers in the JSON string instead of everything being strings.

Version 1.2.0 - 19th of August 2014

Added optional alternative callback functionality to continously call callback with each MEDLINE entry in JSON instead of all the JSON at once.

Version 1.1.0 - 15th of August 2014

Added data streaming functionality. Improved test.

Version 1.0.1 - 6th of August 2014

Changed to 1.0.1 to make npm less grumpy with publishing under the same version.

Version 1.0 - 6th of August 2014

Test added. Can and should be used as a module. Moved around files. Added an extensive test xml that contains a lot of the different possibilites that the MEDLINE® XML file could contain.

Version 0.1 - 30th of July 2014

Basic usage with example file. Can not be used as a module yet!