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

piox-cli

v1.1.0

Published

A CLI tool for quickly creating PlatformIO projects

Downloads

106

Readme

piox-cli

一个旨在简化和加速 PlatformIO 项目初始化流程的命令行工具。它能自动创建项目目录,为指定的开发板初始化 PlatformIO 项目,并随后在 VSCode 中打开该项目。

解决了什么问题?

piox-cli 旨在解决使用 VSCode PlatformIO 插件创建项目时的两个主要痛点:

  1. 简化创建流程:在 PlatformIO 插件中创建项目需要点击多个步骤,流程繁琐。此 CLI 工具通过一行命令即可完成所有操作。
  2. 优化后续操作:项目创建后,插件的默认行为是打开文件资源管理器或将项目添加到当前工作区。最理想的方式是直接在一个新的 VSCode 窗口中打开项目,而 piox-cli 正是为此设计的。

安装 (Installation)

npm install -g piox-cli

用法 (Usage)

piox <board_type> <project_name>
  • <board_type>: 目标开发板的快捷方式。
  • <project_name>: 新项目的名称,也将作为目录名。

支持的开发板 (Supported Boards)

| 快捷方式 (Shortcut) | PlatformIO 开发板 ID (Board ID) | 备注 (Notes) | | ------------------- | ------------------------------- | ------------------------------- | | s3 | esp32-s3-devkitc-1 | | | c3 | esp32-c3-devkitc-02 | | | 52840 | nrf52840_dk | | | 52832 | adafruit_feather_nrf52832 | | | h743 | weact_mini_h743vitx | 自动配置 ST-Link 调试和上传工具 |

示例 (Example)

要为一个 esp32-s3-devkitc-1 开发板创建一个名为 my-esp32-project 的新项目,请运行以下命令:

piox s3 my-esp32-project