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

@ch1ffa/relay-compiler-webpack-plugin

v0.3.0

Published

Webpack pluging for running relay-compiler in webpack dev mode

Downloads

3,523

Readme

relay-compiler-webpack-plugin

Webpack pluging for running relay-compiler in webpack dev mode.

IMPORTANT: This plugin works with relay-compiler v13.0.2 and higher

If you are using relay in your project, you can run relay-compiler before the start command or run it in the watch mode.

In the first case, you have to run relay-compiler manually every time you've changed your queries. In the second case, you have to use a second shell to run relay-compiler in watch mode or use tools like concurrently. Both solutions are possible, but cause unneccessary rebuilds.

This webpack plugins attempts to solve this problem and synchronizes webpack and relay compilation processes.

Usage

// craco.config.js

const { RelayCompilerPlugin } = require('@ch1ffa/relay-compiler-webpack-plugin');

module.exports = {
  webpack: {
    plugins: [new RelayCompilerPlugin()],
  },
};

Options

You can pass options to the RelayCompilerPlugin which correspond to relay-compiler CLI options:

export interface RelayCompilerPluginOptions {
  config?: string;
  watch?: boolean;
  validate?: boolean;
  output?: OutputKind;
  repersist?: boolean;
}

Default option is watch: true. If watchman isn't installed, then option watch: false is being applied.

Option config defines path to a config file. If not provided, searches for a config in package.json under the relay key or relay.config.json files among other up from the current working directory.

Changing validate option is not recommended, because the plugin reads output in the watch mode.

How does it work

Depending on options, relay-compiler can be run in the watch mode or after every file change detected by webpack.

In the watch mode, relay-compiler starts in the afterEnvironment hook as a child process. With watch option disabled, it runs once in the afterEnvironment hook and the every invalid hook call.

This plugin uses the emit hook and forwards stderr output from relay-compiler to throw a WebpackError, stops wepback compilation process and shows errors.