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 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-ncbi

v0.7.3

Published

Access and parse the NCBI eUtils API in Node or the Browser

Downloads

620

Readme

node-ncbi

A nodejs wrapper for the NCBI eUtils. You can use it to search PubMed or other databases and get the results as a JavaScript object.

Read the full documentation of eUtils.

Getting started

npm install --save node-ncbi

var ncbi = require('node-ncbi');

API Keys

eUtils now requires API keys to make more than three requests per second You can read here about how to obtain an API key from NCBI.

Starting with v0.6.0 of node-ncbi, setting the environment variable NCBI_API_KEY will automatically append your key to all outgoing requests.

Basic usage

Performing a search

const pubmed = ncbi.pubmed;
pubmed.search("actin").then((results) => {
  console.log(results);
});

Will log

{
  count: (Number),
  papers: [
    raw: (Pubmed Summary object),
    pubDate: (String),
    title: (String),
    authors: (String),
    pmid: (Integer),
    pmc: (Integer if available),
    doi: (String if available)
  ]
}

where count is the total number of papers, independent of pagination. The "papers" represent PubMed "summaries" containing title, authors, journal and citation information, etc..

By default, 10 results will be retrieved at a time. To get the next set of results:

pubmed.search("actin", 1).then((results) => {
  console.log(results);
});

To change the number of results retrieved at a time:

pubmed.search("actin", 0, 20).then((results) => {
  console.log(results);
});

Looking up a specific paper

pubmed.summary(20517925).then((paper) => {
  console.log(paper);
});

where the only argument is a PMID (PubMed ID #).

In addition, following methods are available:

  • abstract() - get the abstract
  • summary() - get the "summary" - an object of fields containing title, authors, citation info, etc.
  • cites() - papers which this paper cites.
  • citedBy() - papers which cite this paper (only includes citing papers in PubMed central)
  • similar() - papers similar to this one (similarity is calculated on NCBI's side of the API, not ours).
  • isOa() - true if the full NLM XML can be retrieved ("Gold" open-access)
  • fulltext() - the full NLM XML if available, null otherwise

All methods return a promise accessible by .then(); the value retrieved is passed to the promise.

Contributing

I'd love to get PRs improving the code or expanding the search methods beyond PubMed.

You can build for development by navigating to the project folder and running npm install. You'll also need to have gulp installed globally npm install -g gulp.

REPL

To help with creating Gateways are seeing the data structures returned by the API, node-ncbi provides a custom REPL. Start it with npm start. You can then run url({object}) or open({object}) where {object} is an object literal that looks like the following:

utility: 'esearch',
params: {
  db: 'pubmed',
  term: query,
  retstart: start,
  retmax: resultsPerPage
}

url will log the URL needed to access eUtils while open will open that URL in a browser. This can help with debugging and to look at the actual data which is useful to create new queries. See the full documentation of eUtils for more information on creating queries.

License

Copyright (c) 2022 Casey A. Ydenberg

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.