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 🙏

© 2024 – Pkg Stats / Ryan Hefner

outils-cli

v0.0.4

Published

outils-cli is a tool for helping create cmd project immediately

Downloads

15

Readme

outils-cli

outils-cli is a tool for helping creating cmd project immediately

安装

yarn global add outils-cli
# or
npm i outils-cli -g

使用说明

outils --help

如何使用

  1. 确保你已经全局安装了 outils-cli 以后,在命令行输入 outils-cli create [项目名]
  2. 选择相应的模式。
    • normal(简单创建) 简单模式是生成默认的配置
    • detail(根据配置创建) 需要保证当前环境下有配置文件,在使用配置创建之前,需要先运行命令outils config 生成默认配置文件
  3. 请输入工具指令名称 意味着输入你需要发布的这个 npm 包的名字,比如你想创建一个比如你快速操作文件的命令行工具,那么工具指令就叫 fastFile。
  4. 请输入工具所需要的命令名称,以逗号(,)分割 该命令意味着,你在发布了你的 npm 包以后,可以通过 [工具包] [命令] 执行相应的命令。比如上述说的工具,他有插入和删除的方法,他的命令就是有 insert, 你可以通过 insert 以及后续操作快速插入文件,以及 delete 快速删除的操作。在这里你可以输入insert,delete(通过逗号分隔),后续可以使用fastFile insert或者fastFile delete来运行方法
  5. 上述完成以后,会下载相应的模板
  6. 接着可以先确认是否在创建的项目名文件夹下,如果不在,先通过 cd 到项目文件夹下,再通过 npm link ,接着运行你一开始设置的[工具包] [命令] 已经可以使用了。

ChangeLog

v0.0.4

Feature

init