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

spectrum-template

v0.0.1

Published

A modern, customizable template for Spectrum IT Consulting websites, built with Astro, SolidJS, Tailwind CSS v4, Bun, and TypeScript. This template provides a solid foundation for building fast, responsive, and visually appealing consulting websites.

Downloads

6

Readme

Spectrum IT Consulting Website Template

A modern, customizable template for Spectrum IT Consulting websites, built with Astro, SolidJS, Tailwind CSS v4, Bun, and TypeScript. This template provides a solid foundation for building fast, responsive, and visually appealing consulting websites.


🚀 Project Overview

This template is designed for IT consulting businesses looking to establish a professional online presence. It features:

  • Clean, modern design with utility-first styling
  • Modular, reusable components
  • SEO-friendly static site generation
  • Easy customization and theming
  • Optimized performance and accessibility

🧰 Tech Stack

  • Astro: Static site generation & SSR
  • SolidJS: Reactive UI components
  • Tailwind CSS v4: Utility-first CSS framework
  • Bun: Fast runtime & package manager
  • TypeScript: Type safety throughout

📁 Project Structure

/
├── public/           # Static assets (images, icons, etc.)
├── src/
│   ├── components/   # Reusable UI components
│   ├── layouts/      # Page/layout components
│   ├── pages/        # Route-based pages
│   ├── styles/       # Global & component styles
│   ├── utils/        # Utility functions
│   └── data/         # Site configuration & data
├── bun.lock          # Bun lockfile
├── tailwind.config.js# Tailwind CSS config
├── astro.config.mjs  # Astro config
├── tsconfig.json     # TypeScript config
└── README.md         # Project documentation

⚡ Getting Started

  1. Install dependencies
    bun install
  2. Start the development server
    bun dev
  3. Build for production
    bun build
  4. Lint and format code
    bun lint   # Run ESLint
    bun format # Run Prettier

🎨 Customization & Theming

  • Edit content and structure in src/pages/ and src/components/.
  • Update global styles and Tailwind config in src/styles/ and tailwind.config.js.
  • Configure site data in src/data/.
  • Add environment variables in .env (see .env.example if available).

📦 Deployment

After building, deploy the contents of the dist/ directory to your preferred static hosting provider (e.g., Vercel, Netlify, Cloudflare Pages).


📚 Documentation


🔗 Baserow Integration (Optional Usage)

Baserow integration is included out-of-the-box using the @watzon/baserow client library. A utility is provided at src/utils/baserow.ts that exports a pre-configured client using environment variables. This makes it easy to use Baserow for dynamic data or as a CMS, but it is only active if you provide the required environment variables.

How It Works

  • The Baserow client is always available for import, but will throw an error if you try to use it without setting up the environment variables.
  • See .env.example for the required variables: BASEROW_API_URL and BASEROW_API_TOKEN.

Example Usage

import { baserow } from '@/utils/baserow';

// Example: Fetch all tables in a database
const tables = await baserow.databaseTables.list(1);

You can use this data in your Astro or SolidJS pages/components. See the @watzon/baserow documentation for more advanced usage and API details.


📝 License

This template is provided as-is for Spectrum IT consulting projects. Customize and extend as needed for your business.