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

nuz

v0.0.1

Published

Nuz is a fancy library to implements Micro Frontends compatible with ReactJS and may support more in the future

Downloads

5

Readme

Nuz

Nuz is a fancy library to implements Micro Frontends compatible with ReactJS and may support more in the future. 🏃


About Micro Frontends

What is Micro Frontends?

The idea behind Micro Frontends is to think about a website or web app as a composition of features which are owned by independent teams. Each team has a distinct area of business or mission it cares about and specialises in. A team is cross functional and develops its features end-to-end, from database to user interface.

from micro-frontends.org

Micro-frontends is a microservice-like architecture that applies the concept of microservices to the browser side. Transforming to a mono-like applications from a single, single application to an application that combines multiple small front-end applications. Each frontend application can also be standalone run, independent development, standalone deployment.

from a post in dev.to

But you can think easier like... You can use Micro Frontends to building modern web apps with multiple teams, such as e-commerce, social network...

How to implement Micro Frontends?

I found some articles about it

Ah... sound like really hard to implement, right? 🤯

Yep, it really hard but... I created Nuz to help you! 😉

But I already have a React app, do I have to rewrite it?

Nooo, you can use Nuz with your React application, Nuz is compatible with the projects created by create-next-app and create-react-app.

What Nuz can do?

Nuz just is something great to resolve the problems while implements Micro Frontends application such as:

  • [x] 🛥 Require modules from the network
    • Compatible with Node require, just replace require by resolve.
    • Download resource from network, execute in safe context.
    • Support timeout, retry and fallback for modules while running.
    • Support preload and preconnect to reduce download time.
    • Secure with integrity hash downloaded content from CDN.
  • [x] ⚡️ Easy to create, develop, serve, build and deploy modules
    • Create a module quickly, just by a command.
    • Support development mode for standalone and workspace projects.
    • Build with auto-optimize code and minify size.
    • Easy to publish with integrity hash check.
    • Support file serving and directory listing in module, allow secure methods.
  • [x] 📦 Easy management the modules
    • High performance to fetch config for many clients.
    • Permission scope-based using by token.
    • Support full APIs to management the permission and modules.
    • Allow lock module to prevent publish at dangerous time.
    • Allow rollback module by version.
    • Allow auto create fallback using previous for new publish.
    • Support secure methods with https, http2.
    • Support release by schedule.
    • Allow extends application by express.
  • [x] 🖼 Server-side rendering? Sure!
    • Easy to enable SSR mode.
    • Compatible with Next.JS, don't need modify on code.
  • [x] 🧩 Code-Splitting? Okkkk
    • Defalt is auto code-splitting in build mode.
    • Support dynamic imports.
    • Splitting chunks with webpack config.

About

Packages

  • @nuz/core - the core is define, resolve and manage modules from the network in the application.
  • @nuz/cli - Cli provides functions to create, dev, serve and deploy the modules with the best way.
  • @nuz/registry - Provides functions to create a stable, secure and scalable registry server.

And other packages just create to using in the main packages.

How it work?

View the workflow here 🙈

Quickstart

Get started in 5 minutes

Examples

  • nuz + create-next-app - using nuz with a typescript template created by create-next-app, both server and client side render.
  • nuz + create-react-app - using nuz with a template created by create-react-app, client-side render only.

If you using nuz for your project, PRs are welcome! 🎉

Documentation

Update soon! ✍️

Contributing

Please see our CONTRIBUTING.md 📝

Author

Hieu Lam (@lamhieu-vk).