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 🙏

© 2025 – Pkg Stats / Ryan Hefner

afsapi

v3.0.1

Published

Deploy anything to production in 30 seconds. Pure gcloud CLI. No Docker. No Kubernetes.

Readme

AFS - Any Fucking Service v3.0.0

Deploy anything to production in 30 seconds. No Docker. No Kubernetes. Just works.

npm version License: MIT

🚀 What is AFS?

AFS is a pure bash + gcloud CLI tool that deploys ANY application to production in 30 seconds.

Traditional deployment: Hours of Docker configs, Kubernetes YAML, CI/CD pipelines
AFS deployment: afs deploy my-app → Done in 30 seconds

⚡ Installation

npm install -g afsapi

🎯 Usage

Deploy an app

afs deploy my-app            # Deploy current directory
afs deploy my-api ./src      # Deploy from ./src

Other commands

afs list                     # List all deployments
afs delete my-app            # Delete a deployment
afs logs my-app              # Show app logs
afs metrics my-app           # Show app metrics

💡 Examples

Deploy a Node.js app

echo 'console.log("Hello AFS!")' > index.js
echo '{"name":"test","scripts":{"start":"node index.js"}}' > package.json
afs deploy hello-world
# ✅ Deployed to https://hello-world-xxx.run.app in 30 seconds

Deploy a Python app

echo 'print("Hello from Python!")' > main.py
echo 'flask==3.0.0' > requirements.txt
afs deploy python-app
# ✅ Deployed to https://python-app-xxx.run.app in 30 seconds

Deploy static files

echo '<h1>Hello World</h1>' > index.html
afs deploy my-site
# ✅ Deployed to https://my-site-xxx.run.app in 30 seconds

🔥 Why AFS?

| Traditional | AFS | |------------|-----| | Install Docker | ✅ Just bash | | Write Dockerfile | ✅ Auto-detected | | Build image | ✅ Automatic | | Push to registry | ✅ Handled | | Configure K8s | ✅ Not needed | | Setup ingress | ✅ Included | | Configure SSL | ✅ Automatic | | Hours/Days | 30 seconds |

💰 Pricing

$29.99/month for unlimited deployments

  • Deploy unlimited apps
  • Auto-scaling included
  • SSL certificates included
  • Zero cost when idle
  • 99.99% uptime SLA

🛠 Requirements

  • macOS or Linux
  • gcloud CLI installed
  • Active GCP project

🤝 Support

📜 License

MIT - Deploy anything, anywhere, anytime.


Built with ❤️ and pure bash by AFS Labs

No Docker. No Kubernetes. Just works.