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

liferay-npm-bundler-improved

v1.5.1

Published

A non-official but ultrafast drop-in replacement for the liferay-npm-bundler

Downloads

31

Readme

liferay-npm-bundler-improved

liferay-npm-bundler-improved is a high-speed, unofficial drop-in replacement for the liferay-npm-bundler with added watch mode functionality.

description

liferay-npm-bundler-improved is a bundler for liferay portlets that consolidates all dependencies into a single file. Additionally, it copies assets into the build folder and provides access to them through the web context URL. The tool also offers a watch mode that rebuilds the portlet upon file changes.

getting started

installation

To install, run the following command:

pnpm i --D liferay-npm-bundler-improved

existing portlet

To use liferay-npm-bundler-improved in an existing portlet, replace instances of liferay-npm-bundler with liferay-npm-bundler-improved in your build command.

copy sources

If your build command includes lnbs-copy-sources, remove it and add --copy-sources to the liferay-npm-bundler-improved command.

copy assets

For assets located in the assets folder that need to be available through the web context URL, remove the lnbs-copy-assets command from your existing build command and add --copy-assets to the liferay-npm-bundler-improved call.

new portlet

Refer to the examples folder for guidance on using liferay-npm-bundler-improved in a react, vue, or plain js portlet.

advantages

The main advantages of using liferay-npm-bundler-improved are enhanced speed and a better **developer experience **.

speed

The build time for an average portlet with liferay-npm-bundler-improved is approximately 0.1s, regardless of module size. This represents a significant improvement over the official liferay-npm-bundler.

developer experience

liferay-npm-bundler-improved offers detailed error reporting, aiding developers in identifying and resolving issues. Examples include identifying missing keys in package.json and detecting missing entry files.

deploy mode

When the --deploy option or -d is set, the bundler deploys the portlet to the server after the build, using the path specified in the .env file under LIFERAY_DEPLOYMENT_PATH.

watch mode

liferay-npm-bundler-improved supports a watch mode, allowing automatic portlet rebuilds upon file changes. This is invaluable for immediate feedback during portlet development. Include the --watch option or -w in the build command to enable watch mode. (It is possible to use the --deploy option in conjunction with the --watch option.)

[!IMPORTANT] The watch mode currently works exclusively with vite as the build tool. It is highly efficient for smaller bundles but may not be as effective for larger ones (taking more than 10 seconds to complete).

missing features

While the current implementation is suitable for most use cases, there are a few features from the original implementation that are not yet supported:

  • Package deduplication (not planned for implementation)
  • System configuration - Gathering interest for implementation (link)

* The official bundler is available on GitHub

** Timings are based on an Apple M1 MacBook Pro. On Windows, the timing is approximately 0.3s.

*** The package deduplication feature is not planned due to its potential impact on bundler speed and the perceived low usage in practice.