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

midway-scalar

v1.0.1

Published

Midway.js component for Scalar API Reference integration

Readme

midway-scalar

Midway.js 组件,用于集成 Scalar API Reference,提供美观的 API 文档展示界面。

Scalar API Reference Preview

功能特性

  • 集成 Scalar API Reference 到 Midway.js 应用
  • 自动读取 Swagger 配置生成 API 文档
  • 支持自定义 Scalar 配置选项
  • 提供 /scalar 路由访问 API 文档

安装

npm install midway-scalar
# 或
pnpm add midway-scalar

使用

1. 配置组件

src/configuration.ts 中引入组件:

import { Configuration } from '@midwayjs/core';
import * as scalar from 'midway-scalar';

@Configuration({
  imports: [scalar],
})
export class MainConfiguration {}

2. 配置 Scalar

src/config/config.default.ts 中配置:

export default {
  swagger: {
    title: 'API 文档',
    description: 'API 接口文档',
    version: '1.0.0',
  },
  scalar: {
    theme: 'purple',
    darkMode: true,
  },
} as MidwayConfig;

3. 访问文档

启动应用后,访问 http://localhost:7001/scalar/ 查看 API 文档。

配置选项

更多配置选项请参考官方文档:Scalar

License

MIT