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

netscape-cookies-exporter

v1.1.1

Published

Exports your cookies to the Netscape cookie file format which is compatible with wget, curl, youtube-dl and more.

Downloads

16

Readme

view on npm npm module downloads per month

netscape-cookies-exporter

Exports your cookies to the Netscape cookie file format which is compatible with wget, curl, youtube-dl and more.

The Netscape cookie file format stores one cookie per physical line in the file with a bunch of associated meta data, each field separated with TAB. That file is called the cookiejar in curl terminology. The cookie file format is text based and stores one cookie per line. Lines that start with # are treated as comments.

This extension can be super useful in circumstances of using the authenticated cookies from your Chrome browsing session.

Installation

Installation can be done in any of the following platform - Windows, Linux

Windows

Install Node.js v12 or higher. Then install netscape-cookies-exporter with npm:

npm install -g netscape-cookies-exporter

Linux

In Linux you can either install for all users or just the current user. In either case, you must first install Node.js v12 or higher and any puppeteer dependencies. Then follow the appropriate instructions.

Option A: Install for All Users

Install netscape-cookies-exporter globally with npm:

sudo npm install -g netscape-cookies-exporter --unsafe-perm

Puppeteer doesn't install globally with execution permissions for all users so you'll need to modify them:

sudo chmod -R go+rx $(npm root -g)

Option B: Install Only for Current User

First configure npm to install global packages in your home directory:

mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
export PATH=~/.npm-global/bin:$PATH
source ~/.profile
echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.profile
source ~/.profile

Then install netscape-cookies-exporter:

npm install -g netscape-cookies-exporter

Now just run netscape-cookies-exporter.

Usage

To run netscape-cookies-exporter:

netscape-cookies-exporter -u https://google.com -o cookies.txt

What happens next:

  1. This will launch Chromium browser on the URL provided
  2. You can navigate to any page and perform any actions as you wish, e.g. login
  3. DO NOT close the browser just yet!
  4. Go back to the terminal once you are ready to extract all the cookies from your current navigation
  5. You will be asked "Do you wish to close the browser and extract the cookies now?", enter "Y" when ready
  6. Open cookies.txt to see all the cookies exported in the Netscape format.