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

@frakjs/frak

v0.2.0

Published

A commandline deployment tool for syncing files to remote servers.

Readme

Contributors Forks Stargazers Issues MIT

About The Project

Product Name Screen Shot

frak is a tiny JavaScript binary for deployments that don’t need containers or repos—just fast, reliable file transfer from point A to point B.

It leverages rsync over SSH to push files to a remote server, and is able to visualize file changes in a developer-friendly way. frak has a number of advanced features beyond syncing files to a remote server, such as keeping a history of deployments for easy rollback, showing file differences prior to pushing, and executing post-deploy hooks.

🚀 Features

🔌 Init once, deploy anytime 🔎 Interactive diffs before every push/pull 📦 Patch-based backups stored on your server 🧾 Post-deploy commands (e.g. restart services) 📡 Quick SSH console access into deploy root 🔁 Pull support for syncing back changes 📋 Backup inspection with additions/deletions summary

Getting Started

Using frak is simple. All you need is a Node.js environment with npx.

Prerequisites

Make sure you have Node.js and npx installed.

node --version
npm --version
npx --version

Node.js and NPM Screenshot

Usage

The recommended way to run frak is via the npx command.

npx @frakjs/frak --help

If you're prompted to install the package, say yes.

Need to install the following packages:
@frakjs/[email protected]
Ok to proceed? (y)

frak needs to be initialized in your project directory with the init command.

cd project-folder
npx @frakjs/frak init

frak init

This creates a frak.config.js file that looks something like this:

export default {
    server: "[email protected]",
    root: "/var/www/html",
};

You can replace server and root with the appropriate values for your environment.

With the configuration in place, you can now start fraking files to your server. It's as simple as the basic command without any arguments.

npx @frakjs/frak

The results of the command will show you a dry-run preview of the changes that will be synced to the remote server. You will be prompted before it proceeds with the actual file transfer.

If you'd like, you can cancel the sync by typing "no" or any non-"yes" value. Perhaps you want to see the changes line-by-line. frak can do this too!

npx @frakjs/frak diff

The command above will compare all the changes, and present a colorful git-style patch that you can inspect in your terminal.

Roadmap

  • [ ] Send an alert via Slack after push events
  • [ ] Parallel deployments to multiple environments at once

See the open issues for a full list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Top contributors:

License

Distributed under the MIT License. See LICENSE.txt for more information.

Contact

Frank Strube - @strube - [email protected]

Project Link: https://github.com/frakjs/frak