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

biti

v2.4.0

Published

The tiny yet powerful React static site generator.

Downloads

45

Readme

repo banner

npm i biti -g

👀 Looking for a static page generation plus a client-side app? Try 👉 hypr :)

Features

  • easy static page generation
  • intelligent file watching
  • convenient CLI
  • easy Node API

Usage

biti watch pages/ static/

Getting started

biti is pretty simple. It operates on a single directory of pages, which each define and export properties and methods that biti uses to render the page.

For the examples here, we'll use /pages as our pages directory, but you could call it anything.

Configuring a page

Each page requires the following exports:

  • pathname - string - the path where you'd like the page to appear
  • view - function - a function that returns a React component

The pathname property will be passed to the view component.

An simple page might look like this:

import React from 'react'

export const pathname = '/about'

export function view ({ pathname }) {
  return (
    <>
      <h1>About Us</h1>
      <p>...</p>
    </>
  )
}

Static data

Pages can also export a state object, which will also be passed to the view function when rendering.

import React from 'react'

export const pathname = '/about'

export const state = {
  title: 'About Us',
  description: '...'
}

export function view ({ state, pathname }) {
  return (
    <>
      <h1>{state.title}</h1>
      <p>{state.description}</p>
    </>
  )
}

Loading data

Routes that require data or those that need dynamic properties can define a config function that returns a page config containing the same properties listed above.

These values will be deeply merged with whatever static exports were provided.

import React from 'react'
import { getAboutPage } from './lib/api.js'

export const pathname = '/about'

export const state = {
  title: 'About Us',
  team: [
    'Eric'
  ]
}

export function config () {
  return getAboutPage()
    .then(res => {
      return {
        state: {
          team: res.team
        }
      }
    })
}

export function view ({ state, pathname }) {
  return (
    <>
      <h1>{state.title}</h1>

      <h2>Team</h2>

      {state.team.map(name => (
        <p key={name}>{name}</p>
      ))}
    </>
  )
}

Generating pages from loaded data

For generative pages and pagination, the config function can also return an array of page configs. Each of these configs should define its own pathname, so that each page is rendered separately.

The following example will generate a page for each post returned from getBlogPosts:

import React from 'react'
import { getBlogPosts } from './lib/api.js'

export function config () {
  return getBlogPosts()
    .then(posts => {
      return posts.map(post => ({
        pathname: `/posts/${post.slug}`,
        state: {
          title: post.title,
          content: post.content
        }
      }))
    })
}

export function view ({ state, pathname }) {
  return (
    <>
      <h1>{state.title}</h1>

      <article>
        {state.content}
      </article>
    </>
  )
}

Configuration

biti supports minimal configuration, and otherwise falls back to smart defaults. To define a config for all rendering tasks, you can create a biti.config.js file.

biti supports the following properties on the config file:

  • env - object - properties on this object will be attached to process.env, as well as defined globally within the compilation.
  • alias - object - module import aliases

Example:

module.exports = {
  env: {
    API_KEY: 'abcdefg'
  },
  alias: {
    components: './src/components'
  }
}

Default config

By default, biti defines a single alias @ that points to process.cwd(). You can use it throughout your templates like this:

import Component from '@/src/components/Component.js'

CLI

biti only has two commands: render and watch.

Both follow the same pattern:

biti <command> <src> <dest>

For example:

biti render /pages /static

These commands also accept globs as the src property, allowing you to specify individual pages or directories.

biti render /pages/about-us.js /static
biti render /pages/*.js /static
biti render /pages/marketing-site/*.js /static
biti render /pages/**/*.js /static

API

Using biti programmatically is virtually the same as using the CLI, only you'll need to pass your configuration object manually.

const biti = require('biti')

const config = {
  env: { ... },
  alias: { ... }
}

const app = biti(config)

Both render and watch have the following signature:

app.render(src, dest)

render

Renders all pages from src dest.

app.render('/src', '/static')

watch

Watches all pages in src and renders to dest on file change.

app.watch('/src', '/static')

API Events

A biti instance emits a few helpful events as well.

render

After rendering a single page.

app.on('render', page => {})

rendered

After rendering all pages. On watch this is called after every change has been compiled and rendered.

app.on('rendered', pages => {})

error

app.on('error', error => {})

License

MIT License © Eric Bailey