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

splinter-ftp

v1.0.2

Published

FTP client CLI for managing uploads and downloads via .splinter action files

Downloads

424

Readme

Splinter FTP Client

A command-line FTP client that lets you define reusable upload and download actions in a .splinter file.

Full documentation: https://splinter.seremtitus.co.ke/

Installation

npm i -g splinter-ftp

Requires Node.js 18 or later.

Quick Start

# Save credentials (interactive menu)
splinter logins

# Navigate to project and add actions
cd my-project
splinter add            # add an upload action
splinter add            # add another action

# Run uploads
splinter up

# Run downloads
splinter down

Commands

| Command | Description | |---------|-------------| | splinter logins | Manage FTP connection credentials (add, list, delete) | | splinter add | Interactively add an action to the .splinter file | | splinter delete | Interactively delete actions from the .splinter file | | splinter up | Execute all upload actions defined in .splinter | | splinter down | Execute all download actions defined in .splinter | | splinter history | Browse folders registered via splinter commands |

.splinter File Format

The .splinter file is a JSON file in your project directory that holds the login alias and an array of actions:

{
  "login": "prod",
  "actions": [
    {
      "type": "up",
      "source": "./dist",
      "to": "/var/www/html",
      "recursive": true,
      "overwrite": true,
      "command": "npm run build"
    },
    {
      "type": "down",
      "source": "/backups/data",
      "to": "./downloads",
      "recursive": true,
      "overwrite": false
    }
  ]
}

Fields

| Field | Type | Description | |-------|------|-------------| | login | string | Alias of saved credentials to use | | type | "up"|"down" | Direction of transfer | | source | string | Source file or directory path | | to | string | Destination file or directory path | | recursive | boolean | Transfer directories recursively | | overwrite | boolean | Overwrite existing files | | command | string | Optional shell command run before the transfer |

Credentials

Credentials are stored globally in ~/.splinter/credentials.json and managed via splinter logins.