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

@sergiogc9/js-bundle

v1.3.0

Published

A set of utils to easily bundle JavaScript and TypeScript projects using a common config used in my other projects.

Downloads

8

Readme

js-bundle

A set of utils to easily bundle JavaScript and TypeScript projects using a common config used in my other projects.

This package uses esbuild to build the source code and tsc to generate the TypeScript definitions.

Getting started

Install it from NPM or github packages:

yarn add -D @sergiogc9/js-bundle or npm install --save-dev @sergiogc9/js-bundle.

Usage

Depending on the requirements, you can use the CLI command js-bundle or the Javascript API exported by the package.

Using the CLI

The package adds the js-bundle command to perform builds from the console, NPM scripts, pipelines, etc.

Example in console:

yarn js-bundle build --platform=node --only-bundle --only-es6

Example in NPM script, adding a script into package.json:

"scripts": {
    ...
	"build": "js-bundle build --platform=node --only-bundle --only-es6",
},

Using the JavaScript API

This package also exports a Javascript buildPackage function to programmatically perform builds. Using this option you can customize esbuild options for more complex cases.

Example for a custom build with dynamic inputs:

const { buildPackage } = require('@sergiogc9/js-bundle');

const isWatchMode = process.argv.includes('--watch');

const performBuild = async () => {
	const dynamicInputs = ['Api', 'Cache', 'Log', 'Pushover'].map(current => `src/${current}/index.ts`);

	await buildPackage({
		entryPoint: ['src/index.ts', ...dynamicInputs],
		esbuildOptions: {
			platform: 'node'
		},
		isWatchMode
	});
};

performBuild();

Configuration options

CLI options

| Option | Description | Type | Default | | ------------------------ | ------------------------------------------------------------------------------- | ---------------------------- | --------- | | only-bundle | Only perform bundling using esbuild. No TS definition will be performed. | boolean | false | | only-types | Only generate TypeScript types. No bundling will be performed. | boolean | false | | only-es6 | Only perform bundling with ES6 (mjs) target. No cjs bundling will be performed. | boolean | false | | out-dir | Output directory | string | ./dist | | platform | Esbuild platform option | browser, neutral, node | browser | | tsc-incremental | Use incremental flag for tsc | boolean | false | | tsc-extend-diagnostics | Use extend diagnostics flag for tsc | boolean | false | | watch | Use watch mode | boolean | false |

JavaScript API options

| Option | Description | Type | Default | | ------------------- | -------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------- | ------------------------------------------------------ | | entryPoint | Source(s) entrypoint(s) | string, string[] | src/index.ts | | esbuildOptions | Object containing any option for the build method exported by esbuild package. Use it for overriding this packages defaults. | BuildOptions | {} | | isWatchMode | Use watch mode | boolean | false | | onlyES6 | Only perform bundling with ES6 (mjs) target. No cjs bundling will be performed. | boolean | false | | outDir | Output directory | string | ./dist | | tscOptions | Object containing options to use with tsc. | { extendedDiagnostics?: boolean; incremental?: boolean;} | { extendedDiagnostics = false, incremental = false } | | withESBuild | Perform build with esbuild. | boolean | true | | withTSDefinitions | Generate TS definitions. | boolean | true |