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

lins-vue3-base

v1.0.2

Published

Vue 3 + TypeScript + Vite 项目脚手架,支持通过 npx 快速创建新项目。

Readme

lins-vue3-base

Vue 3 + TypeScript + Vite 项目脚手架,支持通过 npx 快速创建新项目。

特性

  • Vue 3:使用最新的 Vue 3 Composition API 和 <script setup>
  • TypeScript:完整的 TypeScript 支持
  • Vite:快速的开发服务器和构建工具
  • Ant Design Vue:美观的 UI 组件库
  • Pinia:轻量级的状态管理库
  • Vue Router:官方路由管理器
  • Axios:强大的 HTTP 客户端
  • Tailwind CSS:实用优先的 CSS 框架
  • ESLint:代码质量检查
  • Prettier:代码格式化

使用方法

通过 npx 创建新项目

npx lins-vue3-base create <project-name>

例如:

npx lins-vue3-base create my-vue-app

进入项目目录并安装依赖

cd my-vue-app
npm install

启动开发服务器

npm run dev

构建生产版本

npm run build

项目结构

src/
├── api/           # API 接口定义
├── assets/        # 静态资源
├── components/    # 组件
├── router/        # 路由配置
├── store/         # 状态管理
├── views/         # 页面视图
├── App.vue        # 根组件
├── main.ts        # 入口文件
└── style.scss     # 全局样式

开发

如果您想修改脚手架本身,可以按照以下步骤进行:

  1. 克隆仓库
  2. 安装依赖:npm install
  3. 运行开发服务器:npm run dev
  4. 测试 CLI 命令:node bin/cli.js create <project-name>

发布

  1. 更新版本号:修改 package.json 中的 version 字段
  2. 构建:npm run build
  3. 发布到 npm:npm publish

许可证

MIT