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

create-floq

v0.0.12

Published

A backend development framework with the ease of serverless with the power and control of a VPS

Readme

🌪️ Floq

Floq is a backend development framework that gives you the ease of serverless with the power and control of a VPS.

With Floq, anyone with a VPS can build and deploy backend applications in a serverless-like environment, but without the usual limitations — no cold starts, no runtime restrictions, and full server access.


✨ Features

  • Simple Project Initialization: Bootstrap a new backend project with a single command.
  • Runtime Flexibility: Choose between Deno, Node.js, and (soon) Bun.
  • Local Development: Run and test your backend app locally with ease.
  • Seamless Deployment: Deploy directly to your VPS with a single command (coming soon!).
  • Full Control: Unlike managed serverless, you get unrestricted access to your infrastructure.

🚀 Getting Started

1. Create a new Floq project

npm create floq@latest

You’ll be prompted for:

  • Project Name (default: floq-app)
  • Runtime (choose between Deno, Node, or Bun in the future — default: Deno)

2. Move into your project directory

cd <your-project-name>
  • For Deno projects: deno install is run automatically.
  • For Node.js projects: npm install is run automatically.

3. Start coding 🎉

  • For Deno projects, your app entrypoint is in: src/main.ts
  • For Node projects, your app entrypoint is in: src/index.js
  • Project metadata is stored in: floq.json

Example: Hello World (Deno)

When you create a new Floq project, you’ll start with a simple route definition like this:

import { HttpMethod, type Route } from "@floq/floq";

const simpleTask: Route = {
  path: "/app",
  method: HttpMethod.GET,
  name: "app",
  task: () => {
    console.log("Hello world from app");
  },
  children: [
    {
      name: "home",
      path: "home",
      method: HttpMethod.GET,
      task: () => {
        console.log("Hello world from home path");
      },
    },
    {
      name: "floq",
      path: "floq",
      method: HttpMethod.GET,
      task: () => {
        console.log("Hello world from floq");
      },
    },
  ],
};

export default simpleTask;

This starter demonstrates how Floq:

  • Defines routes with a path, method, and task
  • Supports nested child routes (e.g., /app/home, /app/floq)
  • Lets you start with simple functions and grow into complex backend logicjs

🛠 Running Locally

To run your backend app in development mode:

floq dev

This gives you a local development server to test before deploying.


📦 Deployment

Deploy to your VPS with:

floq deploy

⚠️ Deployment is currently in development — coming soon!


📂 Project Structure

After initialization, a typical Floq project looks like this:

<project-name>/
├── floq/
│   └── index.(ts|js)     # Main entrypoint
├── src/                  # Your source code
├── floq.json             # Floq config (project name + runtime)
├── deno.json             # Deno config (Deno projects only)
├── package.json          # Node.js config (Node projects only)
└── .gitignore

🤝 Contributing

We welcome contributions!

Feel free to open issues, request features, or submit PRs.


📜 License

MIT License © 2025 Skyguard Africa


⭐ Roadmap

Here are the planned next steps for Floq development:

  • [x] Project initialization
  • [x] Local development server
  • [ ] Bun runtime support: Allow initializing and running projects with Bun in addition to Deno and Node.
  • [ ] Deploy to your VPS: Built‑in deployment tooling so you can push your Floq app directly to your own VPS.
  • [ ] Deploy to our VPS (managed hosting): One‑command deployment to Floq’s managed VPS service for an even simpler experience.
  • [ ] Batteries included: Optional integrations for common backend needs such as Authentication & Database support, and a Mailer service.
  • [ ] Templates: Starter templates for common API styles like REST and GraphQL.
  • [ ] Monitoring & logs: Built‑in observability features to help debug and monitor your applications.