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

@gincat-digital/webpack

v0.0.1-alpha.1

Published

@gincat-digital/webpack is a comprehensive webpack configuration package designed specifically for projects developed at Gincat Digital using React. It provides default configurations to streamline the development process, optimize images and JSON files,

Downloads

74

Readme

@gincat-digital/webpack

@gincat-digital/webpack is a comprehensive webpack configuration package designed specifically for projects developed at Gincat Digital using React. It provides default configurations to streamline the development process, optimize images and JSON files, and allows for full customization to meet the requirements of individual projects.

Features

  • Webpack Dev Server: Includes a webpack dev server for faster development and debugging.
  • Image Optimization: Optimizes images to enhance performance.
  • JSON Optimization: Optimizes JSON files for improved loading times.
  • Customizable: All configurations are fully customizable to adapt to any project's requirements.

Installation

You can install the package via npm:

npm install @gincat-digital/webpack --save-dev

Usage

Once installed, you can use the provided CLI tool to start the development server or build your project.

Initial configuration

To build your project using the provided webpack configurations, create the following files:

// gcwp.js

import GincatWebpack from '@gincat-digital/webpack';

export default new GincatWebpack(process.cwd()) /* Project root */);
// webpack.dev.js

import gcwp from './gcwp';

// Default development configuration
export default gcwp.development;
// webpack.prod.js

import gcwp from './gcwp';

// Default production configuration
export default gcwp.prod;

Using the client tool

To start the webpack dev server or build your project, add the following command to your package.json adding your custom configuration files path from your project's root:

{
	"scripts": {
		"dev": "gcwp --config=webpack.dev.js",
		"build": "gcwp --config=webpack.prod.js"
	}
}

Extending Features

@gincat-digital/webpack is designed to be easily extensible to accommodate additional features or customizations. Below are some ways you can extend its functionality:

Modifying entry

By default, webpack will look for src/app/App.tsx, but you can override this in the initial configuration or in your config file:

// gincat-webpack.js

export default new GincatWebpack(/* root path */, {
	entry: {
		main: 'src/App.tsx',
	},
});

or

// webpack.dev.js

import gcwp from './gcwp';

// Default development configuration
export default {
	...gcwp.development,
	entries: {
		main: 'src/App.tsx',
	},
};

You can also include multiple entries without overriding the default:

// webpack.dev.js

import gcwp from './gcwp';

// Default development configuration
export default {
	...gcwp.development,
	entry: {
		...gcwp.development.entry,
		app2: 'src/app2/App2.tsx',
	},
};

// Output:
/* -------------
entry: {
	app: 'src/app/App.tsx',
	app2: 'src/app2/App2.tsx',
} 
------------- */

Adding Plugins

You can add webpack plugins to enhance the functionality of your build process. Simply install the desired plugin via npm and configure it in your webpack configuration file.

// webpack.dev.js

import gcwp from './gcwp';
import MyWebpackPlugin from 'my-webpack-plugin';

// Default development configuration
export default {
	...gcwp.development,
	plugins: [
		...gcwp.development.plugins,
		new MyWebpackPlugin(),
	],
};

GincatWebpack API

development

This method returns the default webpack configuration for development.

production

This method returns the default webpack configuration for production.

WebpackTools API

constructor

Initialize a new instance.

| Parameter | Type | Description | | -------------- | ----------------------------------- | ------------------------------------------------------------ | | root | string | Projects root folder path. | | config | Config | Some preset configurations. |

config

  • devServer (boolean): Enable or disable dev server (default: true).
  • entries (EntryOptions): Overrides default entry configuration.
  • output (OutputOptions): Overrides default output configuration.

getEntry

This method returns the webpack entry configuration.

| Parameter | Type | Description | | -------------- | ----------------------------------- | ------------------------------------------------------------ | | entry | EntryOptions | Custom entry options. | | defaultConfig | boolean | Flag to include default configuration (default to false). |

| Return Type | Description | | ----------------------------- | ---------------------------- | | GincatWebpackConfig['entry'] | Webpack entry configuration. |


getOutput

This method returns the webpack output configuration.

| Parameter | Type | Description | | --------- | --------------- | ----------------------- | | output | OutputOptions | Custom output options. |

| Return Type | Description | | ---------------------- | -------------------------- | | OutputOptions | Webpack output configuration. |


getResolve

This method returns the webpack resolve configuration.

| Parameter | Type | Description | | -------------- | ---------------------------- | --------------------------------------------------------------- | | resolve | GincatWebpackConfig['resolve'] | Custom resolve options. | | defaultConfig | boolean | Flag to include default configuration (default to false). |

| Return Type | Description | | ------------------------- | ------------------------- | | GincatWebpackConfig['resolve'] | Webpack resolve configuration. |


getPlugins

This method returns an array of webpack plugins.

| Parameter | Type | Description | | -------------- | ------------------------------ | -------------------------------------------------------------------- | | plugins | Array | Custom webpack plugins. | | defaultConfig | boolean | Flag to include default configuration (default to false). |

| Return Type | Description | | --------------------- | -------------------------------- | | Array | Array of webpack plugins. |


getDevServer

This method returns the webpack dev server configuration.

| Parameter | Type | Description | | -------------- | ---------------------------- | -------------------------------------------------------------------- | | devServer | WebpackDevServerConfig | Custom dev server options. | | defaultConfig | boolean | Flag to include default configuration (default to false). |

| Return Type | Description | | ----------------------------- | -------------------------------------- | | GincatWebpackConfig['devServer'] | Webpack dev server configuration. |


getModule

This method returns the webpack module configuration.

| Parameter | Type | Description | | -------------- | --------------------------- | -------------------------------------------------------------------- | | modules | ModuleOptions | Custom module options. | | defaultConfig | boolean | Flag to include default configuration (default to false). |

| Return Type | Description | | ------------------- | ------------------------------ | | ModuleOptions | Webpack module configuration. |


getOptimization

This method returns the webpack optimization configuration.

| Parameter | Type | Description | | -------------- | ------------------------------ | ---------------------------------------------------------------------- | | optimization | OptimizationOptions | Custom optimization options. | | defaultConfig | boolean | Flag to include default configuration (default to false). |

| Return Type | Description | | ------------------------ | ------------------------------- | | OptimizationOptions | Webpack optimization configuration. |


config

This method generates the complete webpack configuration object.

| Return Type | Description | | ------------------- | --------------------------------- | | GincatWebpackConfig | Complete webpack configuration. |


TODO

  • Add client options to run default configurations without specifying custom files.

License

This project is licensed under the MIT License - see the LICENSE file for details.