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

monobase

v3.3.6

Published

- Download the [default project template](https://github.com/koenbok/monobase/raw/master/project.zip) - `cd ~/Downloads/project` - `make serve` to start you dev server - `make build` to generate your site

Downloads

80

Readme

monobase

See an example of the default deployed project.

Quick start

  • Download the default project template
  • cd ~/Downloads/project
  • make serve to start you dev server
  • make build to generate your site

Why is it great?

Monobase let's you build sites in a component based way, allowing you to isolate and re-use every part of your website. Don't build a site, build a site system, and re-use it everywhere.

More great features:

  • Components can be optionally be interactive (if marked with Dynamic()).
  • Style and correctness enforcing through TypeScript and Prettier.
  • Automatic fast browser reloading on changes.
  • Fast with even huge sites through incremental rendering.
  • Easily extendable with existing React components.
  • Automatic port selection if default is taken.
  • Secure SSL serving by default.
  • Nicely formatted terminal logging.
  • Extensive error page with hints for common issues.
  • Optimized builds for production.

Project layout

  • /Makefile Shorthands for commands to quickly build or install.
  • /pages The html pages including site structure.
  • /pages/index.tsx Default index page.
  • /pages/404.tsx File not found page.
  • /components The React Components used by the pages.
  • /components/template.tsx Default page template.
  • /static Just static files like css, images, fonts and downloads.

Dynamic components

Some React components are interactive. Monobase generates a single script called components.js containing every marked component and hydrates them after the page load so they become interactive. This means the inital html gets loaded statically, and then code attaches itself automatically after page load.

To mark components as interactive wrap them in the Dynamic component [example]

Example dynamic components

You can find these in the default project /components/examples folder.

  • Grid - A simple but dynamic grid.
  • Button – Just a button you can click.
  • Timer - A timer that displays the running time in ms.
  • Cookie - An input that stores values in a cookie.
  • Scroll – An element that responds to page scrolling. [todo]
  • Mouse – A mouse location display.
  • Styled – An example of a static, inline styled component.
  • Picture - A responsive image loader.
  • Visible - A wrapper that hides the content if offscreen.
  • Unsplash - An unsplash random image element.

SSL on localhost

Monobase uses ssl / https on localhost. By default you'll have to click some warning away everytime. To make ssl work on localhost you can install mkcert.

  • brew install mkcert
  • mkcert -install
  • Restart your browser

Gotchas

  • On a page or component edit the current page and every component in the project/components will be reloaded. So make sure every file you'd like to use with autoreload is in either the project/pages or project/components folder.
  • Only the hydrated components will show in the React Dev tools, as it uses runtime introspection and can't find static html components.

Styled Components

It's easy to use Styled Components with Monobase. Just import StyledSheet and use it in your template to inline all the generated css. To get a great experience in VSCode, make sure to use the Styled Components Extension.

import { Development, StyledSheet } from "monobase";

export default function Template(props) {
  return (
    <html>
      <head>
        <StyledSheet app={props.children} />
      </head>
      <body>
        {props.children}
        <Development />
      </body>
    </html>
  );
}

Performance

Monobase generates a combined bundle for all of your pages, which contains all the JavaScript. Minified and gzipped it's around 40kb (depending on the size of your site) which is smaller than most images. Once it's loaded, it's cached for every page.

Deployment

The output of make build is just a web project that you can deploy anywhere, like Amazon S3 sites or Netlify. I myselfs also really like Zeit or Netlify for static websites.

  • Install Zeit: yarn --global install now
  • Build project: make build
  • Upload: now ./build