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

flclient

v0.3.47

Published

flclient是一个团队内部管理客户端项目工程的cli工具。

Readme

flclient

提示:

这是一个cli工具,用于提高工作效率,配合我们团队内部的工作流使用,外部团队无法正常使用。所以,如果你不是我们团队的一员,将无法正常使用本模块的功能。

Tip:

This is a cli tool, which is used to improve work efficiency and cooperate with the internal workflow of our team. External teams cannot use it normally. Therefore, if you are not a member of our team, you will not be able to use the functions of this module normally.

全局安装cli

【注意】 需要Node.JS的版本为 v11.15.0 及以上。

npm install flclient -g

或者

npm i flclient -g

【提示】

如果安装过程中提示 permission denied 相关的错误,需要使用 sudo 运行:

sudo npm i flclient -g

(需要输入电脑密码,控制台不显示密码,正常输入回车即可)

初始化项目

当需要新建一个项目工程时,需要使用初始化命令来进行项目的初始化操作,执行该命令后将在命令行执行目录下新建一个项目基础模板,方便马上进行开发工作。使用初始化项目模板方法如下:

将控制台 cd 到项目文件夹的根目录,然后执行以下命令行:

flclient init

【注意】如果项目目录下存在和项目基础模板相同的文件将会被覆盖为模板文件,开发中的项目严禁使用该命令。

查询可用模块

当想要查看命令行工具可以安装的模块有哪些时,可以使用查询命令查询支持的模块信息。

在控制台中执行以下命令行:

flclient --search

或者

flclient -s

添加或者更新模块

当想要在项目中安装一个模块时,可以使用安装命令行来进行添加或者更新模块到最新版本。

需将控制台 cd 到项目文件夹的根目录,然后执行以下命令行:

flclient install [submoduleName1 submoduleName2...]

或者

flclient i [submoduleName1 submoduleName2...]