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

vscode_c_tool

v1.0.4

Published

用于vscode创建C/C++项目的工具

Readme

vscode_c_tool

用于在vscode创建C/C++项目的工具

介绍

  • 安装
  • 命令行
  • 功能使用
  • 版本

安装

搭建nodejs环境,并查看是否有nodejs和npm版本 node --version npm --version,如果以确定安装了相应环境, 则执行下面命令进行安装: npm install vscode_c_tool -g

命令行

  • vscode_c compilerPath -p 本地编译器目录

例如:vscode_c compilerPath -p D:\mingw\x86_64-8.1.0-release-win32-seh-rt_v6-rev0\mingw64\bin 参数说明:

  • -p 参数p用于指定编译器目录
  • vscode_c create -c -n 项目名称 -p 项目所在目录

例如:vscode_c create -c -n MyProj -p E:\C-proj 参数说明:

  • -c 参数c用于指定创建C语言项目
  • -cpp 参数cpp用于指定创建C++语言项目
  • -n 参数n用于指定项目名称
  • -p 参数p用于指定编译器目录

功能使用

在使用该工具前,请确保本地安装了MinGW编译器,用于编译C/C++,若本地没有MinGW编译器,则到 [MinGW官网]https://sourceforge.net/projects/mingw-w64/files/ 下载。 安装编译器流程

把下载的MinGW编译器解压到本地某个目录,此目录就是你的安装目录,然后打开 我的电脑 =》属性 =》高级系统设置 =》环境变量 =》系统变量 =》选择Path =》编辑 =》新建,然后把下载安装的编译器,找到里面的bin目录,例如:D:\mingw\x86_64-8.1.0-release-win32-seh-rt_v6-rev0\mingw64\bin,复制bin目录的路径,放在新建的环境变量,之后一路点击确定即可。最后在vscode编辑器下载一个C/C++插件,开发环境就配置完了。

版本

该版本工具只适用于Windows电脑。