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

spring-initializr-cli

v0.0.3

Published

quickly generate a Spring Boot project

Readme

spring-initializr-cli

快速生成 Spring Boot 项目的命令行工具。

功能简介

  • 支持交互式选择项目类型、语言、Spring Boot 版本、依赖等参数
  • 支持一键默认生成项目(无需手动选择参数)
  • 支持本地缓存元数据,提升生成速度
  • 自动下载并解压 Spring Boot 项目

安装

  npm install -g spring-initializr-cli

使用方法

1. 交互式生成项目

在目标目录下运行:

  spring-init

根据提示选择项目类型、语言、依赖等,确认后自动下载并解压项目。

2. 快速默认生成指定名称项目

在目标目录下运行:

  spring-init -n <项目名>

会使用默认参数(如 Maven、Java、最新 Spring Boot 版本、常用依赖)快速生成指定名称的项目。

3. 使用本地缓存元数据

  spring-init --cache

使用本地缓存的元数据,避免每次都从网络获取,适合网络不畅或加速生成。

4. 查看版本信息

  spring-init --version

显示当前 CLI 工具版本及相关信息。

参数说明

  • -n, --name <name>:快速生成指定名称的默认项目
  • -c, --cache:使用本地缓存元数据
  • -v, --version:显示版本信息

生成项目后的操作

生成成功后,项目会自动解压到当前目录。你可以进入项目目录并使用 Maven 命令进行构建和运行:

  cd <项目名>
  mvn clean install
  mvn spring-boot:run

相关链接

问题反馈

如遇到问题或有建议,欢迎在 GitHub Issues 提交反馈。


本工具由 MP 开发,开源协议 ISC。