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 🙏

© 2024 – Pkg Stats / Ryan Hefner

monoreact

v0.35.0

Published

React workspaces implementation

Downloads

15

Readme

What is it

This is an advanced workspace implementation for React projects.

Monoreact includes the following features:

  • develop regular react apps
  • scaffold React projects
  • build JavaScript, TypeScript, React libraries
  • implement monorepos, workspaces, submodules
  • workspace, submodules management
  • efficient bundling (rollup)
  • workspace dependency awareness (topological sorting)

What problems does it solve

Motivation

The primary motivation was not to be tied to existing solutions of vendors, so as not to get into vendor lock.

Nevertheless, I recommend considering alternative solutions:

  • nx/react - a super powerful tool that can do everything, but turned out to be redundant for me because of vendor lock.
  • lerna - completely threw this idea away with existing yarn workspaces and git submodules scripts.
  • tsdx - a great solution but for narrow tasks.

What can it do now

Powerful CLI

Built-in documentation. Type in the console monoreact --help to see information about all possible commands and monoreact [command] --help their description.

The following options are now available:

Scaffolding

  • new. Creates a container/host/shell application. This is the initial scaffolding of the entire application.
  • generate a new package (submodule): basic, react. Monoreact creates a distribution of responsibility. Not all packages must deal with react components. Sometimes you want to build plain JavaScript/TypeScript libraries.
  • add a new feature (available options: docz, playground (run packages locally inside the package workspace)). Monoreact allows you to not generate components with all the things that may not necessarily need in each package.

Execution

  • build and watch your package with a modern rollup module bundler. Rollup is the best choice for building independent libraries due to efficient tree-shaking and fast compilation.
  • test and lint your package with Jest and eslint. These built-in packages are crucial for increasing and maintaining the quality of built libraries.
  • install dependencies. This option provides workspace dependency management. If you are running install inside some package, it'll add these dependencies as "peer" and add them to the root.

Submodules

It is quite challenging for managing git submodules. You have to perform many actions to make a simple task happen, and this is what scares people off from using submodules. In turn, Monoreact offers user-friendly control through commands, which increases understanding and speed of interaction with git submodules.

  • checkout
  • fetch
  • init
  • pull

Workspaces

Monoreact offers a much efficient alternative to the "yarn workspaces". It analyzes your dependencies between workspaces and runs them in the desired sequence and in parallel, when necessary and appropriate.

  • watch (parallel)
  • build (parallel)
  • test
  • lint

Migration

This section is responsible for scripts that will help to adapt the basic state of the package to the desired one.

  • detach. Detach your package from the workspace. Just in case you plan to use the package as a submodule to run it independently outside the host workspace.

Contributing

Check out contributing guideline to familiarize yourself with the general rules of the project, as well as to figure out how to bootstrap the project and make changes correctly.

License

This project is MIT licensed.