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-courtlistener

v0.0.14

Published

nodejs module for courtlistener

Downloads

2

Readme

node-courtlistener

A small javascript/nodejs client for CourtListener

Note this is early code, still under development.

Installation

This module is installed via npm:

$ npm install courtlistener

Description

Node-Courtlistener is a client side library for getting cases form CourtListener.

The client follows a chained pattern

API

initialize

  var CLClient = require('courtlistener')
  , courtlistener = new CLClient();

login([username], [password])

Description

Set the login/username for CourtListener

Example
courtlistener.login(username, password)

getCases([array of citation strings]), getCase([citation string])

Description
  • Downloads a case matching the citation string to the current destination path for downloads.
  • If no value is passed, it will use the value that is currently passing down the chain.
  • Will pass the case or array of cases down the chain on completion.
Example
courtlistener
  .login([username], [password])
  .getCases(['140 U.S. 22', '100 U.S. 50'])
  .getCase('50 U.S. 175')

citedBy(), cites() (NOT COMPLETE)

Description
  • Gets an array of case objects from the current case on the chain.
  • If no value is passed, it will use the value that is currently passing down the chain.
  • Will pass the case or array of cases down the chain on completion.
Example
courtlistener
  .login([username], [password])
  .getCase('50 U.S. 175')
  .citedBy()
  .display()
  .run()

getCitations(), getCitation()

Downloads case(s) with citation object(s) from the chain to the current destination path

courtlistener
  .login([username], [password])
  .display('***Running Court Listener Script***')
  .getCase('50 U.S. 175')
  .citedBy()
  .set('cites_50_US_175') // store the cites array
  .getCase('140 U.S. 192')
  .get('cites_50_US_175') //retrieve the array
  .to('cites_50_US_175')
  .getCitations() //then get those cases
  .display()
  .run()

to([path])

Description
  • Sets destination path

set('throttle', [delay])

  • Sets the throttle delay between group requests such as .getCases() or getCitations()
courtlistener
  .login(username, password)
  .display('***Running Court Listener Script***')
  .to('cases')
  .getCase('50 U.S. 175')
  .citedBy()
  .set('throttle', 1000) //set 1 second in between API calls
  .getCases()
  .run()

display([value])

Display [value] to the console, or when no value is passed, display the value currently in the chain.

run([value])

Run the script, passing [value] to the first method in the chain.

Other methods

See http://www.github.com/zornstar/diva for additional methods that can be used with the CourtListener object instance, e.g.:

  • Event Listeners: before, after
  • Storage/Retrieval: set, get
  • Fork: Fork a value off of the chain

Example Usage

var CLClient = require('courtlistener')
  , courtlistener = new CLClient();
courtlistener
  .login([username], [password])
  .display('***Court listener***') //display ***Court listener*** to console
  .login('username', 'password') //login
  .to('386 U.S. 738') //set the destination path for downloaded files
  .getCase('386 U.S. 738') //search for 386 U.S. 738 and download
                          //the case to the destination folder
  .cites() //get all of the cites for '386 U.S. 738'
  .display() //display to the console all of the cites for 386 U.S. 738
  .to('cited_cases') // set the destination path for downloaded files
  .getCitations() // download all of the cited cases for '386 U.S. 738'
  .run()