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

geek-cli

v0.4.0

Published

geek client tool for geek+ repo http://172.16.19.91:4873/

Downloads

55

Readme

geek

Geek version Repo link build status

geek: npm client for geek+ private repo

安装

$ npm install geek-cli -g

用法

支持npm的所有命令.

npm同步包

$ geek sync [moduleName]

打开包文档或者gitlab地址

$ geek doc [name]
$ geek doc -g [name] # open git web url directly

组件管理

支持 vue create 命令

创建vue项目

$ geek create my-project

使用 geek+ vue-component-template 创建组件

$ geek create --component my-component

使用 geek+ vue-plugin-template 创建插件

$ geek create --plugin my-component

版本管理

# major | minor | patch 对应三个版本号,在原来的基础上加 1
$ geek version [major | minor | patch]

组件关联 gitlab

# 创建组件时,根据提示输入 gitlab 项目地址,即可自动关联
# 在执行 geek version [major|minor|patch] 升级时,自动在 gitlab 上创建tag

# package#scripts 配置详解
# 1. 构建前自动构建
"prepublish": "npm run build"
# 2. 更新版本时自动构建
"version": "npm run build"
# 3. 更新版本后自动 tag
"postversion": "git push && git push --tags"

运行examples

$ geek run serve

构建组件

$ geek run build

发布组件

# 发布到 geek+ 私有仓库
$ geek publish

查看组件文档

# 查看仓库文档
$ geek doc [pkgName]
# 查看 gitlab 项目地址,如果项目不存在,自动忽略 -g 选项
$ geek doc -g [pkgName]

使用npm安装

geek using npminstall by default. If you don't like symlink mode for node_modules, you can change the installer to original npm. But you will lose the fastest install speed.

$ geek i --by=npm react-native