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

zipto

v1.3.2

Published

一个快捷的目录压缩工具

Downloads

5

Readme

zipto

zipto是用纯JavaScript编写的。可将目录压缩到对应位置的zip中。可用作库或命令行程序。

NPM

安装

请确保已安装Node 10或更高版本。

npm install zipto --save

安装命令行程序:

npm install zipto -g

JS API

const zipto = require('zipto')

zipto({
  dir: 'app',
  out: 'dist',
  name: 'app'
});

Options

  • dir (required) - 需要压缩的目录
  • name - 压缩后文件名称;默认值:与 dir 同值
  • out - 压缩后输出目录; 默认值:dist
  • date - 压缩后文件名称时间;
  • debug - 开启 debug 模式;默认值:true

CLI Usage

zipto -d <zip-dir> -n <zip-name> -o <zip-out>
  • -d,--dir <dir> (required) - 需要压缩的目录
  • -n,--name <name> - 压缩后文件名称;默认值:与 dir 同值
  • -o,--out <dir> - 压缩后输出目录; 默认值:dist
  • --date <format> - 压缩后文件名称时间;
  • --no-date - 禁用时间处理;
  • --debug - 开启 debug 模式;默认值:true
  • --no-debug - 关闭 debug 模式;默认值:false
  • -h,--help - 展示 help 信息

Config

/.zipto.js

const {defineConfig} = require('./index');
const dayjs = require("dayjs");
const path = require("node:path");

module.exports = defineConfig({
  dateformat: 'YYYY-MM-DD_HH_mm_ss',
  join: '-',
  name(options, config) {
    return options.name? options.name: options.dir;
  },
  date (options, config) {
    return dayjs().format(config.dateformat);
  },
  output (options, other, config) {
    const {dir} = options;
    const {zip, archive} = other;
    console.log(`
--------- ---------压缩完毕--------- ---------
压缩目录:${path.resolve('.', dir)}
压缩结果:${zip}
生成文件大小 ${(archive.pointer() / 1024 / 1024).toFixed(2)} MB
`);
  }
});

Update

1.3.2

  • 移除 npm 仓库的打包测试文件;

1.3.1

  • 修复 .zipto.js 中的 date 配置默认不生效的BUG;

1.3.0

  • 取消 name 的必填要求(默认与 dir 同值)
  • 添加 --no-date 可禁用时间处理函数
  • .zipto.js 可分别定制 namedate 函数