New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

molnia

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

molnia

Fast and lightweight library for downloading files

latest
Source
npmnpm
Version
0.1.7
Version published
Maintainers
1
Created
Source

molnia

npm version GitHub Downloads (all assets, latest release) npm downloads

Utility for easy file downloading: fast, lightweight, cross-platform and flexible.

Description

A file download utility written in JavaScript with minimal dependencies. It can be used both as a command line interface and as a library for use in third-party Node.js projects.

Quick start

Command-line interface

Download and install Node.js. Run app:

npx molnia [options] url1 [url2] [url...]

Example:

npx molnia --output C:\Users\John\Downloads\10Mb.dat https://proof.ovh.net/files/10Mb.dat

Library

Install package using NPM:

npm i molnia

Use in your project:

import { download } from 'molnia';

const options = { output: `C:\Users\John\Downloads\10Mb.dat` };
await download('https://proof.ovh.net/files/10Mb.dat', options);

Features

  • Concurrency: chunk download queue with size limitations
  • Retry in case of request failure
  • Proxy support
  • Multiple protocols support: HTTP, HTTPS
  • Minimal dependencies and reduced code size
  • Command-line interface

Keywords

downloader

FAQs

Package last updated on 25 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts