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

lumpy

v1.1.0

Published

A lumpy and dummy JavaScript module bundler for those who are stuck in the past

Downloads

24

Readme

👾 lumpy

npm version CircleCI codecov.io JavaScript Style Guide

A lumpy and dummy JavaScript module bundler for those who are stuck in the past

Lumpy logo

💽 Install

As usual in 2018, most of the software is installed through npm, this one makes no difference:

npm install --global lumpy

Be sure to have node >= 8.0.0.

At this point you should be able to run the lumpy executable. Try it with:

lumpy --help

💾 Precompiled binaries

Alternatively, you can install lumpy by downloading one of the precompiled executables available for Windows, Linux or Mac in the releases page.

🦔 Usage

Lumpy helps you to build a JavaScript bundle file for your frontend applications dependencies starting from a lumpy file (lumpy.txt).

A lumpy file is a plain text file that contains a list of the URLS of all your dependencies. An example lumpy.txt looks as follows:

# lumpy.txt
https://unpkg.com/[email protected]/dist/zepto.min.js
https://unpkg.com/[email protected]/dist/uuid.core.js
https://unpkg.com/[email protected]/dist/store2.min.js
https://unpkg.com/[email protected]/dist/tippy.all.min.js
https://unpkg.com/[email protected]/dist/index.min.js
https://unpkg.com/[email protected]/lib/main.js
https://unpkg.com/[email protected]/favico-0.3.10.min.js

A lumpy file can contain only URLs and comments. A comments is a line starting with #. Separate URLs need to be in separate lines. You can have as many empty lines as you want.

Inside your project, once you create your lumpy.txt file, listing all the dependencies for your frontend application, you can create a single compiled file containing all of them with the following command:

lumpy build

This will output the built package in vendor.js. This file will contain the code contained in all the URLs specified in your lumpy.txt file (in the same order). By default the resulting JavaScript file will be minified using babel-minify.

😱 Advanced usage

The lumpy executable offers 3 main sub-commands:

  • build: creates a build package from a lumpy.txt file
  • clear-cache: clears the cache folder
  • --help: display the help for the main executable or a subcommand (lumpy [build | clear-cache] --help)

📦 Build

The build command allows you to build a vendors package from a lumpy.txt file.

Usage:

lumpy build [destFile]

Where destFile is the path of the compiled bundle file (by default it will be vendors.js in the current working directory).

Options:

  • --lumpyFile, -l [file]: (optional) the lumpy file to use. By default it will check for a lumpy.txt file in the current working directory
  • --cacheFolder, -c [path]: (optional) the path to a folder where the cache files are stored. By default it will create a .lumpy-cache directory in your user home directory.
  • --noMinify, -M: (optional) if set it won't minify the resulting vendors bundle file.
  • --noCache, -C: (optional) if set it won't try to use the cache
  • --stdout, -o: (optional) if set it will output the resulting bundle in the standard output instead of a doing that on a file. Useful if you want to pipe the resulting content to another command.

🛀🏿 Clear cache

Clear the cache folder deleting all the previously downloaded files.

Usage:

lumpy clear-cache

Options:

  • --cacheFolder, -c [path]: (optional) the path to a folder where the cache files are stored. By default it will create a .lumpy-cache directory in your user home directory.

👯‍ Contributing

Everyone is very welcome to contribute to this project. You can contribute just by submitting bugs or suggesting improvements by opening an issue on GitHub.

🤦‍ License

Licensed under MIT License. © Luciano Mammino.