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

atom-framework

v1.5.9

Published

A revolutionary, compiler-driven, full-stack framework for maximum performance and developer simplicity.

Readme

⚛️ ATOM Framework

Build faster, ship sooner. A compiler-driven full-stack framework that treats your code like a single cohesive unit, not a collection of disparate parts.

npm version License: MIT


👋 Meet ATOM

We built ATOM because we were tired of the boilerplate. Tired of setting up API routes just to talk to a database. Tired of configuring bundlers, optimizers, and routers.

ATOM compiles your backend and frontend together. You write functions, we handle the API, the serialization, the hydration, and the deployment.

It's not magic, it's just a smarter compiler.

✨ Features that Matter

  • Unified Codebase - Write server and client code in the same file. We split it for you.
  • Server Actions - Call a server function from a button click. No fetch(), no API endpoints.
  • Zero-Config Performance - Automatic image optimization, critical CSS extraction, and code splitting.
  • Real-Time by Default - Built-in WebSocket support for instant updates.
  • Deploy Anywhere - One command to ship to Vercel, Cloudflare, or Docker.
  • Type-Safe - Your backend types flow directly to your frontend. No syncing required.
  • DevTools HUD - Built-in performance monitoring and SEO analysis right in your browser.

📦 Get Started

Create a new project in seconds:

npx atom-framework create my-app

This sets up everything you need: TypeScript, Tailwind CSS, and a ready-to-run project.

🎯 Quick Commands

# Start the dev server (with instant hot reload)
atom dev

# Build for production
atom build

# Preview production build locally
atom start

# Deploy to the world
atom deploy vercel

💡 How it Works

Here is a complete, working application in one file:

@Title "Hello World"

// Server-side logic lives here
@Flow Actions {
  secure_greet: async function(name) {
    // This runs on the server!
    return { message: `Hello, ${name}!` };
  }
};

// Client-side view
@View {
  const [response, setResponse] = useState(null);
  
  return div([
    h1(response ? response.message : "Waiting..."),
    button("Say Hello", { 
      // Call server function directly
      onclick: () => Actions.secure_greet("Friend").then(setResponse) 
    })
  ]);
}

No API routes. No generic useEffect fetch calls. Just functions calling functions.

📚 Documentation

Ready to dive deeper?

🤝 Contributing

We welcome contributions from everyone! Here's how to get involved:

Quick Contribution Flow

  1. Fork the repo
  2. Create a feature branch: git checkout -b feature/your-feature
  3. Make your changes and test: npm test && atom build
  4. Submit a PR - CI will run automatically
  5. Once approved, your PR will auto-merge to main! 🎉

🤝 Community

ATOM is open source and built by developers, for developers. Join us!

📄 License

MIT © ATOM Framework