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

larks

v0.0.6

Published

FE Lark!

Downloads

8

Readme

Larks!

npm version

前端小工具。

运行环境:Node.js [>=6.0.0],不稳定支持其他版本

安装

node install -g larks

使用

larks [命令] [参数]

# 对于低版本nodeJS用户,我已经用babel转好了,但不保证一定能用
larks-es5 [命令] [参数]

雪碧图

# 支持简写 sp
larks sprite [参数]

# 示例
larks sp -f test -d

参数:

  • --folder, -f 指定相对文件夹,注意是相对路径
  • --deep, -d 遍历子文件夹,默认仅合并当前目录的图片
  • --all, -a 忽略尺寸限制合并全部
  • --size, -s 限制面积
  • --width, -w 限制宽度<100>,默认值时面积优先
  • --height, -h 限制高度<100>,默认值时面积优先
  • --padding, -p 间距
  • --algo 算法:top-down | left-right | diagonal | alt-diagonal | binary-tree,详见这里
  • --output, -o 输出名称,默认spoutput

将得到一张雪碧图以及一个JSON的坐标描述文件,如下:

{
  "ruler":{
    "width":144,
    "height":108,
    "cssText":"background:url(spoutput.png);background-size:144px;"
  },
  "coord":{
    "index.v2.home.png":{
      "x":0, "y":0, "width":36, "height":36
    },
    "deep/index.v2.home2.png":{
      "x":72, "y":36, "width":36, "height":36
    }
  }
}

Base64

# 支持简写b64
larks base64 [参数]

# 示例
larks b64 -f home.png

参数:

  • -f, --file 指定文件
  • -i, --index 懒癌患者福音,如果你的file参数是个文件夹或者没有提供(即当前目录),这时会根据索引来选择图片文件(文件名排序,ZERO-BASE),默认为0,这样就不用每次都为输入长长的图片名而烦恼了。

转换后 Base64 数据将会复制到剪切板中。