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

gmc

v0.1.10

Published

git manager command line

Downloads

7

Readme

Build Status

ffpush

version: 1.0.8

安装

 npm install ffpush -g 

##使用说明

ffpush脚本命令主要用于上传、删除、添加用户、登录及注销相关操作,该脚本主要是第三方或飞凡用于操作相关飞凡的组件。

该脚本包含以下可用的命令

  • remove命令
  • release命令
  • login命令
  • logout命令

使用***-h***帮助可以查看整个命令

ffpush -h

显示如下所示: ffpush -h

remove命令

remove用于删除上传至飞凡项目的组件或app,该命令需要提供删除组件的目录及组件名(如果组件名为空,则删除目录下的所有文件)。 该命令的使用方式为:

ffpush remove widget/FF_PlazaActivityCell
ffpush remove widget/FF_PlazaActivityCell FF_PlazaActivityCell_0.js
ffpush remove widget/FF_PlazaActivityCell FF_PlazaActivityCell_0.js FF_PlazaActivityCell_256.js FF_PlazaActivityCell_279.js
参数解析
widget/FF_PlazaActivityCell 表示删除目录下的所有的文件
FF_PlazaActivityCell_0.js 表示删除目录下指定的单个文件
FF_PlazaActivityCell_0.js FF_PlazaActivityCell_256.js FF_PlazaActivityCell_279.js 表示删除目录下指定的多个文件

release命令

release用于上传组件或app至飞凡项目中,该命令的详细信息可以使用ffpush release -h查看,其显示效果为

ffpush relase -h

该命令的使用方式为

ffpush release -a
ffpush relase -w
参数解释
-a 表示上传的app,上传该app的目录名,必须提供(FF/UF目录名Controller.js),比如目录名为AppStore,则目录下必须存在FFAppStoreController.js或UFAppStoreController.js的文件才可以上传
-w 表示上传的组件, 上传的组件命名规则必须为(xx_yy_zz),其中
xx:表示为FF或则UF
yy:表示为目录名
zz:表示为功能名
同时对于组件必须提供相关js和json文件,才可以上传

login命令

logout命令