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

@ncbijs/protein

v0.0.0

Published

Typed client for NCBI Protein database (EFetch) with FASTA and GenBank format support

Readme

@ncbijs/protein

Typed client for NCBI Protein database. Fetch protein sequences in FASTA and GenBank formats with automatic rate limiting and retry logic.

Installation

npm install @ncbijs/protein

Usage

import { Protein } from '@ncbijs/protein';

const protein = new Protein({ apiKey: process.env.NCBI_API_KEY });

const fasta = await protein.fetchFasta('NP_000537.3');
console.log(fasta.id); // 'NP_000537.3'
console.log(fasta.description); // 'cellular tumor antigen p53 isoform a [Homo sapiens]'
console.log(fasta.sequence); // 'MEEPQSDP...'

const genbank = await protein.fetchGenBank('NP_000537.3');
console.log(genbank.accession); // 'NP_000537'
console.log(genbank.organism); // 'Homo sapiens'
console.log(genbank.features[0].key); // 'source'

API

new Protein(config?)

| Option | Default | Description | | ------------ | ------- | --------------------------------------------------- | | apiKey | -- | NCBI API key (raises rate limit from 3 to 10 req/s) | | maxRetries | 3 | Number of retries on 429/5xx errors |

Fetch FASTA

fetchFasta(accession: string): Promise<FastaRecord>

Fetch a single protein sequence in FASTA format. Returns an empty record if the accession is not found.

fetchFastaBatch(accessions: ReadonlyArray<string>): Promise<ReadonlyArray<FastaRecord>>

Fetch multiple protein sequences in FASTA format in a single request.

Fetch GenBank

fetchGenBank(accession: string): Promise<GenBankRecord>

Fetch a single protein record in GenPept (GenBank protein) format. Returns an empty record if the accession is not found.

fetchGenBankBatch(accessions: ReadonlyArray<string>): Promise<ReadonlyArray<GenBankRecord>>

Fetch multiple protein records in GenPept format in a single request.

Error handling

import { Protein, ProteinHttpError } from '@ncbijs/protein';

try {
  await protein.fetchFasta('NP_000537.3');
} catch (err) {
  if (err instanceof ProteinHttpError) {
    console.error(`HTTP ${err.status}: ${err.body}`);
  }
}

The client automatically retries on HTTP 429, 500, 502, 503 and network errors with exponential backoff + jitter.

Response types

FastaRecord

interface FastaRecord {
  readonly id: string;
  readonly description: string;
  readonly sequence: string;
}

GenBankRecord

interface GenBankRecord {
  readonly locus: GenBankLocus;
  readonly definition: string;
  readonly accession: string;
  readonly version: string;
  readonly dbSource: string;
  readonly keywords: string;
  readonly source: string;
  readonly organism: string;
  readonly lineage: string;
  readonly references: ReadonlyArray<GenBankReference>;
  readonly features: ReadonlyArray<GenBankFeature>;
  readonly sequence: string;
}

See @ncbijs/genbank and @ncbijs/fasta for full sub-interface definitions.