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

gatsby-plugin-webpack-entry

v2.0.2

Published

Gatsby plugin that lets you add additional entry points to the webpack configuration which will be included in your HTML pages.

Downloads

93

Readme

gatsby-plugin-webpack-entry

Adds entry points in the webpack configuration and includes those entry points in your Gatsby compiled HTML files.

:warning: This plugin relies on replaceWebpackConfig which has the potential to break future versions of Gatsby. The maintainers will do their best to keep this plugin working with Gatsby v2+ :warning:

When do I use this plugin?

Use this plugin if you need to load your own JavaScript files outside the normal Gatsby created bundles.

Usage

Installing

  • NPM - npm install gatsby-plugin-webpack-entry
  • Yarn - yarn add gatsby-plugin-webpack-entry

Available Options

entry: { [key: string]: string | string[] } (required)

  • Specify the entry points just like you would in a webpack configuration. You MUST use the object syntax when specifying this option as this is merged in with Gatsby's Webpack entries and therefore must be named. This plugin will verify your named entry points do not collide with Gatsby's.
  • The value should be an absolute path like path.resolve(__dirname, 'src', 'super-app.js')

Example

module.exports = {
  siteMetadata: {
    title: 'Budget Dumpster',
    description: 'Budget Dumpster specializes in local dumpster rentals for homeowners and contractors alike. Call us to rent a dumpster in your area.'
  },
  plugins: [
    'gatsby-plugin-react-helmet',
    'gatsby-plugin-remove-trailing-slashes',
    'gatsby-plugin-postcss',
    'gatsby-plugin-react-svg', 
    {
      resolve: `gatsby-plugin-google-tagmanager`,
      options: {
        id: process.env.GATSBY_GTM_ID,
        includeInDevelopment: true
      }
    },
    {
      resolve: 'gatsby-plugin-webpack-entry', // <-- Here is the plugin
      options: {
        entry: {
          "super-app": path.resolve(__dirname, 'src', 'super-app.js')
        }
      }
    }  
  ]
}

How to Develop Locally

This project relies on TypeScript for all the type safety goodness which can be found in the src directory. The compiled output goes directly into the root of the project because Gatsby expects certain files to be in the root.

Dev Workflow

  1. Get the latest updates npm install.
  2. Run npm run watch to tell TypeScript to listen to changes in the src directory and recompile on the fly.
  3. Link this package to an actual gatsby project to test the plugin working, there is a good article for this here.

Helpful Commands

  • Run tests - npm run test
  • Lint - npm run lint
  • Compile Typescript - npm run build
  • Watch Typescript source and compile on change - npm run watch

How to contribute

  • Please open an issue first so that it can be determined that the feature / issue needs to be implemented / fixed.
  • If it is determined that the feature / issue is something this plugin should address then feel free to fork the repo and make a pull request.
  • This project makes use of conventional commits and your commits should follow this standard. In order to make following this convention easy this project uses an NPM package called commitizen. Just run npm run commit and follow the prompts provided when you're ready to make a git commit.
  • Before making a pull request please make sure the tests are passing npm run test and the linter is happy npm run lint.