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

@shudazhang/node-down-file

v0.0.3

Published

不使用第三方库的nodejs下载文件工具

Downloads

1

Readme

node-down-file

不使用第三方库的nodejs下载文件工具

环境要求

>=Node.js v10.12.0

使用了v10.12.0以上的版本 fs.mkdirSync(dirPath, { recursive: true });  

引入使用

使用实例
    npm install @shudazhang/node-down-file
    const downloadFile = require('@shudazhang/node-down-file')

    或者
    const downloadFile = require('./node-down-file.js');

    downloadFile({
        href: "http://***.***.***.***/deno.zip",
    }).then(() => {
        console.log("下载完成");
    })
    .catch((error) => {
        console.log("下载失败");
    });

参数说明
    href: 下载文件的URL。
    headers: HTTP请求头。如:{Cookie: 'xxx', 'User-Agent': 'xxx'}
    isChunk: 是否使用分片下载。默认:true, 可选[true,false]
    chunkSize: 分片的大小。默认:1024 * 1024 * 1(字节)
    timeout: 请求超时时间。默认:15000(毫秒)
    poolCount: 并发下载线程数。默认:5
    retry: 每个分片的重试次数。默认:10
    fileName: 下载文件的名称。默认:下载文件的URL的文件名。
    fileDir: 下载文件保存的目录。默认:当前目录
    cacheDir: 缓存文件保存的目录。默认:当前目录/URL的文件名。
    cacheExt: 缓存文件的后缀。默认:ca
    cacheDbName: 缓存数据库的名称。默认:00.json
    isCache: 是否使用缓存。默认:true, 可选[true,false]
    isWriteLog: 是否记录日志。默认:true, 可选[true,false]
    logDir: 日志文件保存的目录。默认:当前目录/log
    logFileName: 日志文件的名称。默认:log.txt
    isConsole: 是否在控制台输出日志。默认:true, 可选[true,false]
    onProgress: 下载进度回调函数。返回:[{index: 序号,start:分片开始索引,end:分片结束索引,status: 状态(init:初始化,starting:开始下载,finish:下载完成)}]

命令行参数

使用实例
    node ./node-down-file.js --href=http://***.***.***.***/deno.zip

参数说明
    -- href: 下载文件的URL。
    -- headers: HTTP请求头。 如:--headers='Cookie:aaa,User-Agent:bbb'
    -- isChunk: 是否使用分片下载。默认:true, 可选[true,false]
    -- chunkSize: 分片的大小。默认:1024 * 1024 * 1(字节)
    -- timeout: 请求超时时间。默认:15000(毫秒)
    -- poolCount: 并发下载线程数。默认:5
    -- retry: 每个分片的重试次数。默认:10
    -- fileName: 下载文件的名称。默认:下载文件的URL的文件名。
    -- fileDir: 下载文件保存的目录。默认:当前目录
    -- cacheDir: 缓存文件保存的目录。默认:当前目录/URL的文件名。
    -- cacheExt: 缓存文件的后缀。默认:ca
    -- cacheDbName: 缓存数据库的名称。默认:00.json
    -- isCache: 是否使用缓存。默认:true, 可选[true,false]
    -- isWriteLog: 是否记录日志。默认:true, 可选[true,false]
    -- logDir: 日志文件保存的目录。默认:当前目录/log
    -- logFileName: 日志文件的名称。默认:log.txt
    -- isConsole: 是否在控制台输出日志。默认:true, 可选[true,false]

功能介绍

[√] 自定义headers
[√] 分片下载
[√] 超时时间
[√] 线程数
[√] 下载路径
[√] 下载文件名
[√] 缓存目录
[√] 缓存后缀名
[√] 缓存数据文件名
[√] 是否使用缓存
[√] 是否记录日志
[√] 日志文件保存的目录
[√] 日志文件的名称
[√] 是否在控制台输出日志
[√] 错误处理回调函数
[√] 下载成功回调函数
[√] 下载进度回调函数

版本更新

v0.0.3 2024-07-04

2024-07-04 写入文件flag改为w+
2024-07-03 修复缓存目录

v0.0.1 2024-07-03

2024-07-03 首次提交